Re: [flexcoders] Flex2: Binding from actionscript

2006-07-19 Thread slangeberg
Not sure if it'll work, but you could try ChangeWatcher.watch(). Scott On 7/19/06, Alex [EMAIL PROTECTED] wrote: Hi all,Im trying to translate an mxml binding tag to actionscript :I got this mxml tag:mx:Binding source=model.podManager.getPod( mypodId ).destroy destination=handleDestroy /

RE: [flexcoders] Flex2: Binding from actionscript

2006-07-19 Thread Stephen Gilson
Hi, bindSetter() might not be the best name of that method. It could really be called bindFunction() because you are specifying a function to be called, not a real set method. If you have a real set method, use bindPropety() and specify the property name defined by the set method. You can