我正在尝试使用 ExternalInterface 从动作脚本中调用 javascript 的方法。这是动作脚本中的代码
private function onKickEvent(e:LogoutEvent):void{
ExternalInterface.call("LoginFound","message");
return;
}
这是我的 javascript mwthod
function LoginFound(message){
alert(message);
anotherInstanceExists=true;
}
一切工作正常,但唯一的事情是在大约 20 秒后对 javascript 中显示的警报框采取行动时,Flash 播放器会抛出异常,即脚本运行时间超过预期时间 15 秒。
我怎样才能避免这种情况?