This is probably all ready answered, but I can't think of how to search for it.
I have a custom component. This component has a method. When this method
completes I want to execute user defined code similar to how a focusOut handler
allows the programmer to define a block of code in the mxml like;
<mx:TextInput focusOut="myvar='test';myfunction('abc');">
I would like to define;
<ns1:myComponent myMethodComplete="myvar='test';myfunction('abc');">
I just don't know how to define the thing (handler? property? method? it would
help if someone would tell me what it is called) that will do this.
If you can show me, or show me where to go I would appreciate it.
Paul