RE: [flexcoders] Event Handling

2008-08-08 Thread Gregor Kiddie
The example you've given isn't a parent / child scenario, it is two components at the same level. If you add the listener and dispatch the event to / from the component which contains the two components, you may have more luck. i.e. parent.addEventListener( ... ) and parent.dispatchEvent( ... )

Re: [flexcoders] Event handling question...

2008-02-23 Thread Scott Melby
Check out the IResponder interface and AsyncToken class. You can create a different responder for each method that is responsible for handling the results of that call and updating your model or notifying about errors as appropriate. Here is an example of how to use it //Create an

Re: [flexcoders] Event handling question...

2008-02-23 Thread [p e r c e p t i c o n]
aha! i knew it could be done...TY p On Sat, Feb 23, 2008 at 2:43 AM, Scott Melby [EMAIL PROTECTED] wrote: Check out the IResponder interface and AsyncToken class. You can create a different responder for each method that is responsible for handling the results of that call and updating

Re: [flexcoders] Event Handling with CreateChild() / addEventListener

2006-01-25 Thread Carolyn Cole
Hello, I Believe it should be something like ourGroup.addEventListener(click, this); with a function defined as: function click() { } that does what you want to do. --Carolyn At 11:10 AM 1/25/2006, you wrote: Hi folks, I am creating a set of radio buttons and a radio button group in a