var myTimer:Timer = new Timer(1000);
myTimer.addEventListener(TimerEvent.TIMER, countdownHandler);
function countdownHandler(event:TimerEvent):void{
countdown1.text = 100-myTimer.currentCount+"seconds Left";
if(myTimer.currentCount==100){gotoAndStop(66)}
}
function start_btn_clicked(e:MouseEvent):void{
gotoAndPlay(getLevelFrame(1));
myTimer.start();
SoundMixer.stopAll();
}
我试图在我的舞台上放置一个倒数计时器,但计时器没有显示在舞台上。打印的单词不是“seconds Left”,而是“secons eft”。我可以在其他场景上运行,但不能在这个场景上运行。