0
我正在運行Flash倒計時是倒計時到指定日期的倒計時。我想在倒計時30秒後停止。我需要做什麼?30秒後停止Flash動畫
counter.onEnterFrame = function(){
currentDate = new Date();
currentMillisecs = currentDate.getTime();
this.msecs = eventMillisecs - currentMillisecs;
if (this.msecs <= 0){
// the event time has been reached!
// play the next frame for the result of the countdown.
play();
return;
}
感謝讓計時器工作對我來說 – rivkyros