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

[flexcoders] Event handling question...

2008-02-22 Thread [p e r c e p t i c o n]
Hi All, I need to know if there's a way to tell where an event is coming from using RemoteObjec'ts result handler...I have several methods that i call using RemotrObject, and need to take different action based on which remote method i called... any ideas?? thanks p