[flexcoders] Simluate async method

2007-10-15 Thread Claudia Barnal
Hi, How could I make an async method in actionscript. Something like this: function doSomething():void { asyncCall(makeOrangeJuice, orageJuiceReady); } function makeOrangeJuice():void { ExternalInterface.call(openModalAlert); } function orageJuiceReady():void { trace(No timeout

Re: [flexcoders] Simluate async method

2007-10-15 Thread Ralf Bokelberg
Probably you could open the alert using a timeout in JavaScript Cheers Ralf. On 10/15/07, Claudia Barnal [EMAIL PROTECTED] wrote: Hi, How could I make an async method in actionscript. Something like this: function doSomething():void { asyncCall(makeOrangeJuice, orageJuiceReady); }