Hello friends, I have the following code in action script 3:
async.addResponder(new Responder(result, defaultFaultHandler));
result is a function that receives data from remoteobjet async, calling this function normally, but must go along with other arguments result, example:
async.addResponder(new Responder(result(args...), defaultFaultHandler));
How should I proceed in this way? I tried many things, but see no solution yet.
Thanks to everyone now.