AS3 Adob​​e Air停止执行代码

时间:2014-11-14 06:06:39

标签: android ios actionscript-3 air adobe

我正在使用flash专业CC for iOS和android使用air sdk 15开发应用程序。 他们以任何方式停止执行代码,他们的任何功能都是这样做的, 像

pause(for_seconds);

1 个答案:

答案 0 :(得分:0)

没有睡眠功能,但您可以延迟调用函数:

function delayedFunctionCall(delay:int) {
    trace('going to execute the function you passed me in', delay, 'milliseconds');
    var timer:Timer = new Timer(delay, 1);
    timer.addEventListener(TimerEvent.TIMER, launch);
    timer.start();
}

function launch(e:TimerEvent):void{
  timer.removeEventListener(TimerEvent.TIMER, launch);
  yourFunction(); // <----
}

你也可以试试这个:

var timeToWait:int=100;
startTime = getTimer();
while(getTimer() - startTime < timeToWait){}