tags:

views:

34

answers:

1

I was making multiple remote calls and they are done sequentially and when I am getting a result event back it's triggering calls to all the methods with ResultEvent as an argument . I am supposed to receive the result event only in the method given inthe event listener but it's triggering calls to all the methods with ResultEvent as an argument .

Has anyone come across this kind of problem? Is there any workaround for it?

A: 

You might want to take a look at the AsyncToken:

http://stackoverflow.com/questions/468669/matching-web-service-results-to-requests-in-flex/469568#469568

Mike Sickler