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 error!!!");
}


Or how else can I avoid the timeout error with a modal JavaScript Alert.

Thanks,
Claudia

Reply via email to