我正在使用flash专业CC for iOS和android使用air sdk 15开发应用程序。 他们以任何方式停止执行代码,他们的任何功能都是这样做的, 像
pause(for_seconds);
答案 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){}