Re: [flexcoders] Re: Flex applications look like Fisher-Price toys

2007-01-31 Thread Bjorn Schultheiss
nice work! On 01/02/2007, at 3:26 AM, Dave Wolf wrote: Thanks! We have some awesome guys here who make all the magic happen. Yes indeed we did. -- Dave Wolf Cynergy Systems, Inc. Adobe Flex Alliance Partner http://www.cynergysystems.com http://www.cynergysystems.com/blogs Email: [EMAIL

Re: [flexcoders] Re: Loading module from module

2007-02-01 Thread Bjorn Schultheiss
I've got A-B-C working fine using the high-level ModuleLoader. Probably the best way to solved it is post a simple test case. regards, Bjorn On 02/02/2007, at 4:10 AM, tvikatos wrote: Anybody has a clue? --- In flexcoders@yahoogroups.com, tvikatos [EMAIL PROTECTED] wrote: Loading a module

Re: [flexcoders] Possible to edit and recompile Flex framework?

2007-02-01 Thread Bjorn Schultheiss
forget about recompiling the framework. Give us some context in your application on where this error occurs On 02/02/2007, at 8:49 AM, zzwi89 wrote: obj); } I cannot simply override a manager, but as this is a null object, I wonder if a simple fix could be to do a null check against impl and

Re: [flexcoders] Re: Possible to edit and recompile Flex framework?

2007-02-01 Thread Bjorn Schultheiss
Here's a message from Alex Harai. I think the same applies for your history manager issue This error occurs for two reasons: One is that somehow, the DragManager or DragManagerImpl is not linked into the movie. The other, and more common reason is that more than one module is using the

Re: [flexcoders] Re: Possible to edit and recompile Flex framework?

2007-02-01 Thread Bjorn Schultheiss
yeah i noticed you were saying the same ;) On 02/02/2007, at 9:43 AM, Michael Schmalle wrote: Bjorn, I forgot about that but that is basically what I said without the addChild() part. so the static intializer will do the trick alone.

[flexcoders] Re: Modules and Cairngorm - Solution... I think

2007-02-02 Thread Bjorn Schultheiss
each time. But i wasnt using modules, just a normal Cairngorm app. I was going to look into it to find out exactly what was happening but I just dont have the time at the moment. maybe this is enough of a clue for someone else to say why :) Bjorn Schultheiss wrote

Re: [flexcoders] List BORDER PIXELS?

2007-02-04 Thread Bjorn Schultheiss
not sure but it may be verticalGap On 05/02/2007, at 2:36 PM, stevekpeak8 wrote: Hello, I hope someone here can help me with a last minute issue. I have a mx.List object with variable Row Height. Because of the way I'm formatting for the end user, I sometimes have graphics that span several

Re: [flexcoders] Re: Serious Bug in HistoryManager (introduced in latest release?)

2007-02-05 Thread Bjorn Schultheiss
(However it is making a connection to a server when it occurs). Chris W --- In flexcoders@yahoogroups.com, Bjorn Schultheiss [EMAIL PROTECTED] wrote: does your app use modules, or built using multiple swfs? On 06/02/2007, at 5:49 AM, zenwarden wrote: There appears to be a failry serious

Re: [flexcoders] Resources to Flex Application Architecture articles?

2007-02-07 Thread Bjorn Schultheiss
In terms of an architecture framework, Cairngorm is highly recommended http://labs.adobe.com/wiki/index.php/Cairngorm A lot of documentation has been released from adobe on the best practices regarding using Flex 2, check out http://flex.org/ , or in- particularly

Re: [flexcoders] Re: Serious Bug in HistoryManager (introduced in latest release?)

2007-02-07 Thread Bjorn Schultheiss
, its the pattern they are sticking into all their code :) --- In flexcoders@yahoogroups.com, Bjorn Schultheiss bjorn.schultheiss@ wrote: Here's a reply i got from one of the engineers, Alex Harai on what could be a related issue. This error occurs for two reasons: One

Re: [flexcoders] Centering an application (Web 2.0 style)

2007-02-13 Thread Bjorn Schultheiss
Why not go ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute width=100% height=100% backgroundColor=white mx:Canvas width=800 height=600 horizontalCenter=0 verticalCenter=0 mx:Text text=top/left corner/ /mx:Canvas /mx:Application

Re: [flexcoders] runtime configuration

2007-02-13 Thread Bjorn Schultheiss
I guess you could still employ the ServiceLocator out of Cairngorm alone to solve this. Then perhaps load the server prefix ('http://myserver:port/') at runtime, via xml or whatever. Bjorn On 14/02/2007, at 12:48 PM, Grant Davies wrote: Is there a practice or class for runtime config of

Re: [flexcoders] Granite Data Services 0.1.0 is released

2007-02-15 Thread Bjorn Schultheiss
Wow... Do you have a specific testers list or forum? regards, Bjorn On 16/02/2007, at 1:17 AM, fwolff999 wrote: Hello, Granite Data Services 0.1.0 is available for download. Granite Data Services aims to be a free, open source (LGPL'd), alternative to Adobe Flex 2 Data Services for J2EE

Re: [flexcoders] cairngorm event that will affect all models, where to put the logic.

2007-02-18 Thread Bjorn Schultheiss
Does it require the first event's result handler to be called before firing the get new data event? On 19/02/2007, at 3:42 AM, Grant Davies wrote: The question was, who should fire that event ? The date change view fires the change date event and a command updates the model for the

Re: [flexcoders] Re: Modules and Cairngorm - Solution... I think

2007-02-18 Thread Bjorn Schultheiss
Hi Alistair, Is the an update on this change? regards, Bjorn On 03/02/2007, at 4:58 AM, alimcleod wrote: Hi, This does look like a bug with SequenceCommand. I've been looking at the various options as to how to fix this. I've never been overly enamoured with SequenceCommand (it wasn't

Re: [flexcoders] Some Components I would like to see

2007-02-20 Thread Bjorn Schultheiss
I think i've seen all them already.. cant be bothered gethering links though. Most of them are very achievable using whats already supplied in the framework. regards, Bjorn On 21/02/2007, at 12:58 PM, boy_trike wrote: This list is not in any particular order, just thinking out loud

Re: [flexcoders] Gordon Smith - Some Answers about the Datagrid

2007-02-20 Thread Bjorn Schultheiss
IMHO, extensibility. RAD doesn't not pay off when extensibility is limited. Extensibility must be a key consideration in any UI control framework. Unless there is overriding reason for limiting extensibility, that is. regards, Bjorn On 21/02/2007, at 10:17 AM, Matt Chotin wrote: Actually

Re: [flexcoders] Are other developers hesitant to extend existing classes in Flex?

2007-02-21 Thread Bjorn Schultheiss
Hi Dana, private variables and excluded classes can be hell. But when you've got a job to do, extending is mostly quicker than rewriting. regards, Bjorn On 22/02/2007, at 9:04 AM, Dana Gutride wrote: Recently on this list, somebody said that the Flex framework team has been surprised

Re: [flexcoders] Are other developers hesitant to extend existing classes in Flex?

2007-02-21 Thread Bjorn Schultheiss
D, This copy code business is nasty. Especially when your private var is 3 or 4 levels down the inheritance chain. regards, Bjorn On 22/02/2007, at 10:01 AM, Doug McCune wrote: I've had a similar experience many times, so I'll chime in with what I've been doing. The problem: you want

Re: [flexcoders] Are other developers hesitant to extend existing classes in Flex?

2007-02-21 Thread Bjorn Schultheiss
Those one-liners are the worst. On 22/02/2007, at 11:43 AM, Patrick Mineault wrote: I've had a lot of issues as well with private functions. I would have suggested to use protected basically everywhere since you can't really plan for where developers will want to modify the components. As

Re: [flexcoders] Runtime CSS and embeded fonts not working

2007-02-22 Thread Bjorn Schultheiss
Hi Hilary, Does your app make use of Modules? regards, Bjorn On 23/02/2007, at 1:28 PM, Hilary Bridel wrote: Hi All, I have a css file with embeded fonts that when loaded at compile time works ok, but when compiled into a .swf runtime css file (with no errors), does not render the

[flexcoders] Re: Modules and Cairngorm - Solution... I think

2007-02-28 Thread Bjorn Schultheiss
. But i wasnt using modules, just a normal Cairngorm app. I was going to look into it to find out exactly what was happening but I just dont have the time at the moment. maybe this is enough of a clue for someone else to say why :) Bjorn Schultheiss wrote: Hey Can anyone give me

Re: [flexcoders] I want to write a tutorial

2007-03-04 Thread Bjorn Schultheiss
1 on papervision 3d and flex 2 ;) On 05/03/2007, at 4:38 PM, danneri21 wrote: Hey guys, I want to write another tutorial on Flex. So far I've written on how to create a login system with flex and php, and an mp3 player in flex. Any suggestions on what I should do next? I'm fresh out of

[flexcoders] Disable Clicks while on busyCursor

2007-03-04 Thread Bjorn Schultheiss
Hey, Is there a way to disable all mouse clicks while CursorManager is set to busyCursor? Regards, Bjorn

[flexcoders] Setting Multiple Bindable Properties

2007-03-07 Thread Bjorn Schultheiss
Hey Ya'll let me eloborate, say i have: [code] [Bindable] var myVal1:Boolean; [Bindable] var myVal2:Boolean; [/code] and i want to update the values (which in turn would update the 'view' ) via an array loop, intuitively i would code [code] function { var myArray = [ myVal1, myVal2 ] for

Re: [flexcoders] Setting Multiple Bindable Properties

2007-03-07 Thread Bjorn Schultheiss
; inSomeNumber; i++ ) { this[“myVal “ + i ] = true; } } (maybe a do while, instead of for?) Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bjorn Schultheiss Sent: Wednesday, March 07, 2007 5:29 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Setting

Re: [flexcoders] Setting Multiple Bindable Properties

2007-03-07 Thread Bjorn Schultheiss
[mailto:[EMAIL PROTECTED] On Behalf Of Bjorn Schultheiss Sent: Wednesday, March 07, 2007 5:29 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Setting Multiple Bindable Properties Hey Ya'll let me eloborate, say i have: [code] [Bindable] var myVal1:Boolean; [Bindable] var myVal2

Re: [flexcoders] Modules at 360Flex conference

2007-03-07 Thread Bjorn Schultheiss
Hey Alex, After your experience with modules do you believe it was the correct decision to include it in 2.01 as opposed to waiting for 3.0? Over here we just refactored away from modules to the monolithic ria because of outstanding issues.. regards, Bjorn On 08/03/2007, at 12:23 PM,

Re: [flexcoders] Modules at 360Flex conference

2007-03-07 Thread Bjorn Schultheiss
Shaun, Smaller Swf output file sizes, Module support within the mx framework, Module support within Cairngorm, Issues with Viewstacks and Binding, Embedding Fonts, I think there are a couple more as well. Bjorn On 08/03/2007, at 1:11 PM, shaun wrote: Bjorn Schultheiss wrote: Hey Alex

Re: [flexcoders] Modules at 360Flex conference

2007-03-07 Thread Bjorn Schultheiss
… I’ll have to try that out. I would think that my shared code example would apply though. Unless you want to unload the font later. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bjorn Schultheiss Sent: Wednesday, March 07, 2007 7:00 PM To: flexcoders

Re: [flexcoders] Modules at 360Flex conference

2007-03-08 Thread Bjorn Schultheiss
encountered? (Cross-SWF font access is a problem at the player level, but the other stuff is all fixable.) -rg From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bjorn Schultheiss Sent: Wednesday, March 07, 2007 7:00 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders

[flexcoders] Loading Remote SWF Assets in FireFox

2007-03-08 Thread Bjorn Schultheiss
Hi, Are there any known issues with displaying Remote swf assets in your flex 2 app (container) in Firefox? I'm loading swf assets from a remote location via mx:SWFLoader and mx:Image. I have set the ContextLoader objects, Security.loadPolicyFile (crossdomainurl) when the app inits, every

Re: [flexcoders] Loading Remote SWF Assets in FireFox

2007-03-08 Thread Bjorn Schultheiss
On 09/03/2007, at 12:25 PM, Alex Harui wrote: Do you get an exception? What kind of SWF (player 9, as code, or just graphics, etc)? -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bjorn Schultheiss Sent: Thursday, March 08, 2007 4:40 PM To: flexcoders

Re: [flexcoders] Loading Remote SWF Assets in FireFox

2007-03-08 Thread Bjorn Schultheiss
there, but is the wrong size. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bjorn Schultheiss Sent: Thursday, March 08, 2007 5:31 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Loading Remote SWF Assets in FireFox A, No exceptions, Flash 8 Swfs, The image

Re: [flexcoders] Loading Remote SWF Assets in FireFox

2007-03-08 Thread Bjorn Schultheiss
? Bjorn On 09/03/2007, at 1:18 PM, Alex Harui wrote: Dunno. What’s the URL to the SWF? Are you loading absolute or relative path? We fix up relative paths in loadContent(). From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bjorn Schultheiss Sent: Thursday

[flexcoders] Remote AVM1 swfs not able to execute code?

2007-03-13 Thread Bjorn Schultheiss
Hi, I have a flex app that loads in avm1 swf assets and displays them as thumbnails. In these thumbnails we also wish to be able to control their timeline, ie, stop and start. The current setup is this. domainA Flex 2 RIA domainB Flash 8 player domainB Flash 8 assets we load in the flash

Re: [flexcoders] Remote AVM1 swfs not able to execute code?

2007-03-14 Thread Bjorn Schultheiss
the original swf’s code. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bjorn Schultheiss Sent: Tuesday, March 13, 2007 11:59 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Remote AVM1 swfs not able to execute code? Hi, I have a flex app that loads

Re: [flexcoders] Remote AVM1 swfs not able to execute code?

2007-03-14 Thread Bjorn Schultheiss
'. go figure. Bjorn On 15/03/2007, at 10:39 AM, Alex Harui wrote: Did you make the right allowDomain call? Read up on LocalConnection security in the doc on flash.net.LocalConnection. -Alex From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bjorn Schultheiss

Re: [flexcoders] SWFLoader query string?

2007-03-15 Thread Bjorn Schultheiss
Hey Chad, I've been working on exactly this problem most of the week. first to pass in your unique local conn string. [flex] mx:SWFLoader source=whatever.swf?flashId=foobar / [flash] var connid = flashId; trace('connid: '+connid); Except this will not work if your flash resides on a

Re: [flexcoders] CursorManager, PopupManager - internal state across module load?

2007-03-18 Thread Bjorn Schultheiss
You must load a reference to CursorManager and Popup Manager in your shell. ie in shell main.mxml import mx.managers.CursorManager private m:CursorManager that should fix it regards Bjorn On 17/03/2007, at 3:51 AM, david_mccraw123 wrote: Hi, I've run into an issue where, after

Re: [flexcoders] Apollo Now Live on Labs | http://labs.adobe.com/technologies/apollo/

2007-03-18 Thread Bjorn Schultheiss
oh yeah boy! On 19/03/2007, at 3:54 PM, greg h wrote: http://labs.adobe.com/technologies/apollo/

[flexcoders] SoundChannel.position

2007-03-26 Thread Bjorn Schultheiss
Is there any reason why my soundChannel.position is returning a negative value? ie. -4.5698753508373E7 It playbacks fine...

Re: [flexcoders] Setting properties on AS-created components

2007-03-26 Thread Bjorn Schultheiss
Yo Brett, The process is similar to Flash v2 components. Basically there are getters and setters on nearly every property in the Flex Controls Framework. For v2 components we always had to wait for the onLoad events before we could really do anything. It's now been elaborated to

Re: [flexcoders] onChange()

2007-03-27 Thread Bjorn Schultheiss
Send through more of your code. Are you calling this logic on the creationComplete event? On 28/03/2007, at 10:43 AM, Jeremy Watson wrote: AnyoneAm I calling the function correctly in flex actionscript? J. - Original Message From: Jeremy Watson [EMAIL PROTECTED] To:

Re: [flexcoders] Scrollbar for small browser windows

2007-03-27 Thread Bjorn Schultheiss
By default scroll policy's are set to auto, so unless these have been set to 'off' you should at least be getting the mx:application scrollbars On 28/03/2007, at 10:59 AM, ivansebastiansurya wrote: Hi everyone, I'm developing a Flex application for large monitor screen. HOwever, when I

Re: [flexcoders] Scaling Custom Components

2007-03-27 Thread Bjorn Schultheiss
Do you require to move change any shape properties when the scale occurs. If not you cant just avoid redrawing them again by setting a flag after they've been drawn. If so, you could approach it a few ways. I guess the only way you could ensure removeChildAt() to work is to use

Re: [flexcoders] Scaling Custom Components

2007-03-27 Thread Bjorn Schultheiss
Hey Alex, if 0 == childA can you insert childB at 99 for example. if so if you remove childA does childB's index change? can you ensure that you're child will remain at an index? On 28/03/2007, at 11:12 AM, Alex Harui wrote: Children renumber after one is removed 0 = childA 1 = childB 2

Re: [flexcoders] onChange()

2007-03-27 Thread Bjorn Schultheiss
calculation. i.e. a + b does that help at all. Jeremy - Original Message From: Bjorn Schultheiss [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Wednesday, 28 March, 2007 10:59:57 AM Subject: Re: [flexcoders] onChange() Send through more of your code. Are you calling this logic

Re: [flexcoders] Re: New Adobe Products and Flex

2007-03-27 Thread Bjorn Schultheiss
Its probably Kevin 'Escobar' Lynch who comes up with this. On 28/03/2007, at 2:57 PM, hank williams wrote: wow. thats funny. Hank On 27 Mar 2007 18:42:52 -0700, Doug McCune [EMAIL PROTECTED] wrote: We're talking about a company (Macromedia) that had code names for products like Blaze

Re: [flexcoders] Re: New Adobe Products and Flex

2007-03-27 Thread Bjorn Schultheiss
loving it.. On 28/03/2007, at 3:30 PM, Matt Chotin wrote: Wait till you guys see the Doritos plugin J From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bjorn Schultheiss Sent: Tuesday, March 27, 2007 10:20 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders

Re: [flexcoders] Re: newbie question: Timer across components..

2007-03-28 Thread Bjorn Schultheiss
How about this ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute xmlns:ns1=* creationComplete=init() mx:Script ![CDATA[ import flash.utils.Timer; import

Re: [flexcoders] Re: newbie question: Timer across components..

2007-03-28 Thread Bjorn Schultheiss
thats dispatched from the 'Application' .. --- In flexcoders@yahoogroups.com, Bjorn Schultheiss [EMAIL PROTECTED] wrote: How about this ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute xmlns:ns1=* creationComplete=init() mx:Script

Re: [flexcoders] is there a simple way to center a loaded image?

2007-04-01 Thread Bjorn Schultheiss
try this override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void { super.updateDisplayList( unscaledWidth, unscaledHeight ); if ( _image ) { _image.width =

Re: [flexcoders] remote xml file not loaded via localhost

2007-04-01 Thread Bjorn Schultheiss
A filesystem swf cannot load files or data via localhost. A Security issue. You need to put your swf on your localhost or set up the flash player security options. On 01/04/2007, at 2:52 AM, giladozer wrote: Hi, I could not find an answer while crawling thru messages here :)… so: My app

Re: [flexcoders] is there a simple way to center a loaded image?

2007-04-01 Thread Bjorn Schultheiss
available for canvas, but it is for the box containers. Doug On 01 Apr 2007 18:03:31 -0700, Bjorn Schultheiss[EMAIL PROTECTED] wrote: try this override protected functionupdateDisplayList(unscaledWidth:Number, unscaledHeight:Number): void { super.updateDisplayList

Re: [flexcoders] Accessing nested DisplayObjects programatically

2007-04-01 Thread Bjorn Schultheiss
Type it as a Container Object. Can DisplayObject even contain children??? On 02/04/2007, at 7:52 AM, Alen Balja wrote: Hi list, Is there a way to access nested children of the Application object programatically? I have an app: Application object and inside I have HDividededBox

Re: [flexcoders] visual effect of mouse over using dispatchEvent

2007-04-01 Thread Bjorn Schultheiss
when you dispatch an Event that way does your handler still fire? You may have to manually switch the normalskin to the value of the overskin. This would be nasty tho. Good question, perhaps Ely or Alex can elaborate? On 01/04/2007, at 3:46 AM, dantmcgowan wrote: and I use dispatch

Re: [flexcoders] Re: What's up with runtime errors silent failing.

2007-04-02 Thread Bjorn Schultheiss
DataBinding is funny like that. Once it fails it stop execute any further in the code block. I think at this stage it may be worth writing our own versions of databinding that handle as we wish. On 02/04/2007, at 4:11 PM, iko_knyphausen wrote: Same here... I am wondering whether its VISTA

Re: [flexcoders] Accessing nested DisplayObjects programatically

2007-04-02 Thread Bjorn Schultheiss
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bjorn Schultheiss Sent: Sunday, April 01, 2007 6:42 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Accessing nested DisplayObjects programatically Type it as a Container Object. Can DisplayObject even contain children

Re: [flexcoders] Re: What's up with runtime errors silent failing.

2007-04-02 Thread Bjorn Schultheiss
, iko_knyphausen wrote: Hm, how about data binding that is done declarative - meaning in curly braces... there is no code block per se? --- In flexcoders@yahoogroups.com, Bjorn Schultheiss [EMAIL PROTECTED] wrote: DataBinding is funny like that. Once it fails it stop execute any further in the code block

Re: [flexcoders] Re: What's up with runtime errors silent failing.

2007-04-02 Thread Bjorn Schultheiss
;-) (praying) Thx --- In flexcoders@yahoogroups.com, Bjorn Schultheiss [EMAIL PROTECTED] wrote: Where you change the value that is being Binded to. eg. mx:Text text={model.text} / // in a command or equivalent model.text = param1; model.otherVal = param2; If binding throws an error

Re: [flexcoders] invalidateSize() in tandem with invalidateDisplayList()

2007-04-02 Thread Bjorn Schultheiss
I dont see where you would call invalidateSize() on its own (without a preceeding invalidateDisplayList() ) to often, if at all. But you would definitely call invalidateDisplayList() on its own without measure() so it is necessary that these two are seperate. On 03/04/2007, at 1:26 AM,

Re: [flexcoders] OS X Command line

2007-04-02 Thread Bjorn Schultheiss
Write an ant script that confirms the necessary variables are set. The best is to create the simplest hello world test and see where it dies. If you need a sample ant build file using the flex ant tasks get it from here. http://www.riapriority.com/flex/samples/flex_ant_test.zip Let me

Re: [flexcoders] Reference to a class variable

2007-04-02 Thread Bjorn Schultheiss
There are different ways of performing such a task. You can use a token object when making a service call. If you wish you can attach your model to the token object if reference it again in the result Handler's event object. Bjorn On 03/04/2007, at 8:33 AM, manfred.maierhofer wrote: Hi,

Re: [flexcoders] Zoom instance

2007-04-03 Thread Bjorn Schultheiss
ret.easingFunction = mx.effects.easing.Exponential On 03/04/2007, at 3:50 PM, {reduxdj} wrote: I started an AS3.0 zoomEffect, how do I add Exponential easing? I need a little more clear example please. (Here is my code, how do i do the easing method) private function

Re: [flexcoders] Modules vs RSLs - Are they mutually exclusive?

2007-04-03 Thread Bjorn Schultheiss
My definition would be that Modules are used to split a single application into multiple SWF's while RSL's are swfs used across multiple applications. B On 04/04/2007, at 3:04 AM, Collin Peters wrote: I am wondering if modules have taken over all the functionality of an RSL? From what I

Re: [flexcoders] Cairngorm event

2007-04-03 Thread Bjorn Schultheiss
In the tree's parent. tree.addEventListener( TreeEvent.CHANGE, addProductToShoppingCart ); On 04/04/2007, at 4:18 AM, mapper2255 wrote: Good Afternoon, I know this has been asked before, I see 51 threads on tree events cairngorm yet none seem to take the last step. From this thread:

Re: [flexcoders] Modules vs RSLs - Are they mutually exclusive?

2007-04-03 Thread Bjorn Schultheiss
If it is loaded into the shell each module already has access to it. On 04/04/2007, at 11:24 AM, Collin Peters wrote: Yes, but could an RSL not also be a swf used across multiple modules?

Re: [flexcoders] Creating Modular Applications

2007-04-09 Thread Bjorn Schultheiss
do something like this mx:Module creationComplete=init() mx:Script function init():void { percentHeight = 100; percentWidth = 100; } /mx:Script /mx:Module On 09/04/2007, at 5:57 AM,

Re: [flexcoders] Anonymous function to revert datagrid edit?

2007-04-09 Thread Bjorn Schultheiss
set oldVal to a property on your event object. Then place logic from your event function in your command's fault handler. Event should just be passing data while commands handle and execute logic. On 09/04/2007, at 10:48 PM, ba.chase wrote: I have a itemEditEnd event handler for a

Re: [flexcoders] Most Efficient Design Question

2007-04-09 Thread Bjorn Schultheiss
Put it all in one. Let Flex do the work. On 09/04/2007, at 10:49 PM, lncdeveloper wrote: I am looking into building a Flex application for my Church. They have a tape/CD library of sermons over the past 15 years. The data is in a database, but for my first version I will be generating XML

Re: [flexcoders] Combine Applications

2007-04-09 Thread Bjorn Schultheiss
At cairngormdocs.org you can find a few versions of FlexStore built using the Cairngorm framework. FlexStyleExplorer exports css that you should be able to use in any project. On 09/04/2007, at 11:11 PM, mapper2255 wrote: Good Morning, Is there anyone out there who has developed a

Re: {Disarmed} Re: [flexcoders] dynamic creation of class

2007-04-09 Thread Bjorn Schultheiss
It may be worth looking ClassFactory or an ObjectTranslator as well. Depends if you need to set values on your new class. On 09/04/2007, at 11:42 PM, Toby Tremayne wrote: Hi Erik - yup that's what I went with :) Toby On 09/04/2007, at 13:41 , Erik Price wrote: On 4/8/07, Toby Tremayne

Re: [flexcoders] How do I tell what I clicked on?

2007-04-09 Thread Bjorn Schultheiss
Can you use currentTarget ? Perhaps you can dispatch unique events from each group and listen to them from their parent and decide there? On 10/04/2007, at 7:19 AM, Nate Pearson wrote: I have a custom component that adds groups of 1 sprite and a few labels. On each of those items I have

[flexcoders] Re: Cairngorm 2 + Modules: A Proposal

2007-04-11 Thread Bjorn Schultheiss
Jeff, On the topic of your ModelLocator solution, currently we have the benefit of strong typing throughout the modelLocator but in the solution you posted you register your model objects on the modelLocator via a string reference. Is this the only solution or is there a pattern we can employ

Re: [flexcoders] Granite Data Services 0.2.0 is out

2007-04-11 Thread Bjorn Schultheiss
Are you able to monitor the traffic accurately using service capture. In the example i get weird results. On 12/04/2007, at 1:21 AM, fwolff999 wrote: Hello, Granite Data Services 0.2.0 is available for download. Granite Data Services aims to be a free, open source (LGPL'd), alternative to

Re: [flexcoders]Where is the right property?

2007-04-11 Thread Bjorn Schultheiss
I think its a style. You might need myLabel.setStyle( 'right', 10 ); Bjorn On 12/04/2007, at 9:22 AM, dorkie dork from dorktown wrote: I am trying to constrain my component 10 pixels from the right edge in ActionScript and mxml editor is telling me there is no right property. This code

Re: [flexcoders]Is there an event that the application dispatches when a flash swf has not been interacted with for a certain amount of time?

2007-04-11 Thread Bjorn Schultheiss
I don't think there is a predefined event for this. If i were to do it, in the application scope i would set handlers for mouseDown, mouseMove and keyDown to monitor activity time periods with each interaction resetting a Timer object. regards, Bjorn On 12/04/2007, at 12:58 PM, dorkie

Re: [flexcoders]Is there an event that the application dispatches when a flash swf has not been interacted with for a certain amount of time?

2007-04-11 Thread Bjorn Schultheiss
PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bjorn Schultheiss Sent: Wednesday, April 11, 2007 8:23 PM To: [EMAIL PROTECTED] Subject: Re: [flexcoders]Is there an event that the application dispatches when a flash swf has not been interacted with for a certain amount of time? I don't think

Re: [flexcoders] Looping through sorted ObjectProxy

2007-04-16 Thread Bjorn Schultheiss
Hey Bjørn, for in loops in reverse. for each should give you what you need. regards, Bjorn On 17/04/2007, at 5:11 AM, bjorn - wrote: I'm getting a sorted ObjectProxy from a server. In my debugger it looks like this: obj.stats = Object (@b90e661) [51] = Object (@b90e541) [52] =

[flexcoders] Flex CS3 style Icon

2007-04-16 Thread Bjorn Schultheiss
Is there a patch to 201 to update the icon to the cs3 style icon? Regards, Bjorn Schultheiss Senior Developer Personalised Communication Power Level 2, 31 Coventry St. South Melbourne 3205, VIC Australia T: +61 3 9674 7400 F: +61 3 9645 9160 W: http://www.qdc.net.au

Re: [flexcoders] Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-16 Thread Bjorn Schultheiss
y.com]HeliHobby.com[ /URL] -- - - - - - - - Andrew Muller http://www.webqem. com linkedin: http://www.linkedin .com/pub/ 1/151/905 Send instant messages to your online friends http:// au.messenger.yahoo.com Regards, Bjorn

Re: [flexcoders] Flex variable for creation date?

2007-04-16 Thread Bjorn Schultheiss
for a given app, such as a last-modified or build date? As we're pushing out new versions of a given app it would be nice to have something in the lower corner letting the user know the version they are running without relying on the coder to update a version string or something. Regards, Bjorn

Re: [flexcoders] Re: boolean not casting ok from string

2007-04-18 Thread Bjorn Schultheiss
, Bjorn Schultheiss Senior Developer Personalised Communication Power Level 2, 31 Coventry St. South Melbourne 3205, VIC Australia T: +61 3 9674 7400 F: +61 3 9645 9160 W: http://www.qdc.net.au ((This transmission is confidential and intended solely for the person or organization

Re: [flexcoders] boolean not casting ok from string

2007-04-18 Thread Bjorn Schultheiss
Funny! On 19/04/2007, at 12:17 PM, Luis Eduardo wrote: but this not to Boolean: var numTest:Boolean = Boolean(false); trace(numtest = +numTest); var boolVal:String = false; var numTest:Boolean = boolVal == true; trace(numtest = +numTest); Bjorn

Re: [flexcoders] Adding a button to the title area of a panel

2007-04-18 Thread Bjorn Schultheiss
Theres a titleBar container within panel. Best bet is to extended panel so you can frequently add, remove, position this button as you wish. Bjorn On 19/04/2007, at 1:05 PM, {reduxdj} wrote: How do you do this? Thanks, Patrick Regards, Bjorn Schultheiss Senior Developer

Re: [flexcoders] Adding a button to the title area of a panel

2007-04-19 Thread Bjorn Schultheiss
= this; } Ater you do this you must realign that button within layoutChrome. 18 Apr 2007 22:25:48 -0700, Bjorn Schultheiss [EMAIL PROTECTED]: Theres a titleBar container within panel. Best bet is to extended panel so you can frequently add, remove, position this button as you wish. Bjorn On 19

Re: [flexcoders] Need help creating an image from a source control

2007-04-19 Thread Bjorn Schultheiss
not succeeded. Any pointers, examples to look at, etc. would be greatly appreciated. Thanks, Shaun Regards, Bjorn Schultheiss Senior Developer Personalised Communication Power Level 2, 31 Coventry St. South Melbourne 3205, VIC Australia T: +61 3 9674 7400 F: +61 3 9645 9160 W: http

[flexcoders] Sandbox errors in Flex when using BitmapData.draw();

2007-04-22 Thread Bjorn Schultheiss
Hey, I'm getting an annoying error when i try to do a bitmap draw of an image loaded via a remote domain. **Error: A policy file is required, but the checkPolicyFile flag was not set when this media was loaded** To confirm i have a breakpoint where i set the source of the image tag, and

Re: [flexcoders] Confusion on Image Component

2007-04-22 Thread Bjorn Schultheiss
the constraints of it's parent container? Thank you in advance, for any information offered on this topic. Mike Regards, Bjorn Schultheiss Senior Developer Personalised Communication Power Level 2, 31 Coventry St. South Melbourne 3205, VIC Australia T: +61 3 9674 7400 F: +61 3 9645 9160 W

Re: [flexcoders] Sandbox errors in Flex when using BitmapData.draw();

2007-04-22 Thread Bjorn Schultheiss
the Security.allowDomain()method. If these conditions are not met, the draw() method does not draw anything I tried to do the same with a remote .flv file but the player wouldn't let me :-( Hilary On 4/23/07, Bjorn Schultheiss [EMAIL PROTECTED] wrote: Hey, I'm getting an annoying error

Re: [flexcoders] Generate Flex html wrapper (the .html and .js files) with ANT?

2007-04-23 Thread Bjorn Schultheiss
of the Properties window, it lists the Flex build (also allowing you to add your own ANT scripts.) If I could find that source, it might help to figure out how to solve the issue. Thanks, any help is greatly appreciated! Regards, Jason Regards, Bjorn Schultheiss Senior Developer Personalised

Re: [flexcoders] DeepCopy Built In?

2007-04-25 Thread Bjorn Schultheiss
There's an example in the docs. On 26/04/2007, at 10:43 AM, Persaud, Anthony wrote: Is there a built-in function to deep-copy an object? Regards, Bjorn Schultheiss Senior Developer Personalised Communication Power Level 2, 31 Coventry St. South Melbourne 3205, VIC Australia T: +61

Re: [flexcoders] Usability Testing and RIAs

2007-04-25 Thread Bjorn Schultheiss
Looks like an ideal document though. On 26/04/2007, at 12:03 PM, Weyert de Boer wrote: I found this non-free document: http://www.forrester.com/Research/Document/Excerpt/ 0,7211,40566,00.html Only a bit expensive for a academic paper g Regards, Bjorn Schultheiss Senior Developer

Re: [flexcoders] Usability Testing and RIAs

2007-04-25 Thread Bjorn Schultheiss
, Weyert de Boer wrote: Yeah, only a lot of money, it might be useful and interesting document. But its just too much. I am downloading the free powerpoint presentation as we speak. Regards, Bjorn Schultheiss Senior Developer Personalised Communication Power Level 2, 31 Coventry St. South

Re: [flexcoders] FF and Java sessions

2007-04-26 Thread Bjorn Schultheiss
from your system. The reading, distribution, copying or other use of this message or its attachments by unintended recipients is unauthorized and may be unlawful. If you have received this e-mail in error, please notify the sender. Regards, Bjorn Schultheiss Senior Developer

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-26 Thread Bjorn Schultheiss
Think again. On 27/04/2007, at 11:26 AM, mvbaffa wrote: Everybody uses Windows, almost all the workstations are windows. Macs have IE working OK.

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-27 Thread Bjorn Schultheiss
Which department? Development. Creative. Windows does not have a monopoly. On 27/04/2007, at 12:34 PM, Jeffry Houser wrote: I think this is true for many enterprises. Not true for a lot of developers. At 09:41 PM 4/26/2007, Bjorn Schultheiss wrote: Think again. On 27/04/2007, at 11:26

Re: [flexcoders] Re: Will Microsoft's new Silverlight Player Kill our beloved Flex ?

2007-04-29 Thread Bjorn Schultheiss
that luxury.Regards, Bjorn Schultheiss Senior Developer Personalised Communication Power Level 2, 31 Coventry St.South Melbourne 3205,VIC AustraliaT:  +61 3 9674 7400F:  +61 3 9645 9160W:  http://www.qdc.net.au ((This transmission is confidential and intended solely for the person

Re: [flexcoders] Rumor of the day: Silverlight sourcode public

2007-04-29 Thread Bjorn Schultheiss
http://www.codeplex.com/Project/ProjectDirectory.aspx?TagName=WPF Would be nice if they came with their own runtime for MacOSX and Linux That would be major! On 30/04/2007, at 8:12 AM, Weyert de Boer wrote: see: http://www.infoworld.com/article/07/04/27/MS-open-source-

<    1   2   3   4   5   >