Re: [flexcoders] mx:method

2005-10-12 Thread Aly Sidi
Thanks Matt 1. clear thank you. 2. Method A returns void ex : Method A is void Init( String host, String port ) Method B is String Execute(String var1, String var2) I kinda solved it by creating a Method C which calls Method A then B. Is there a concept of a static RemoteObject or a

RE: [flexcoders] mx:method

2005-10-12 Thread Matt Chotin
completed (event.result may just be null). Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Aly Sidi Sent: Wednesday, October 12, 2005 12:46 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] mx:method Thanks Matt 1. clear thank you. 2

RE: [flexcoders] mx:method

2005-10-11 Thread Matt Chotin
1. Multiple means that multiple calls to the same method are allowed before previous calls have returned. This is the default behavior and what youre generally used to when calling any method. We added a few more concurrency values to try to simplify logic if you really didnt want to