-->

AS 3闪光灯倒数计时器游戏结束画面(AS 3 Flash Countdown Timer For

2019-10-19 11:32发布

目前我在一个Flash游戏编程类的动作脚本3,似乎无法在别处找到一个时钟倒计时,然后做一个动作。 我用林达教程已经和尚未有帮助,我也谷歌搜索了不少,但没有运气。 我有一个倒计时钟,并已尝试“if”语句,但没有运气。

可有人指导我什么我做错了正确的方向?

 //game timer

 var count:Number = 60; // amount of time 

 var myTimer:Timer = new Timer(1000,count); // time in ms, count is calling from line above

 myTimer.addEventListener(TimerEvent.TIMER, countdown);

 myTimer.start();

 function countdown(event:TimerEvent):void
 {
     myText_txt.text = String((count)-myTimer.currentCount); //dynamic txt box shows current count 
 }


 //if and else if statements

 if (((count)-myTimer.currentCount) == 58)
 {
     gotoAndStop(2);
 }

Answer 1:

这应有助于;)没有任何的幻数。

var myTimer:Timer = new Timer(1000,60); // every second for 60 seconds
myTimer.addEventListener(TimerEvent.TIMER, onTimer);
myTimer.addEventListener(TimerEvent.TIMER_COMPLETE, onComplete);
myTimer.start();

function onTimer(e: TimerEvent):void {
    myText_txt.text = String(myTimer.repeatCount - myTimer.currentCount);
}

function onComplete(e: TimerEvent):void{
    gotoAndStop(2);
}


Answer 2:

添加您if语句中countdown像这样:

function countdown(event:TimerEvent):void
{
     myText_txt.text = String((count)-myTimer.currentCount); //dynamic txt box shows current count 

     //if and else if statements

     if (((count)-myTimer.currentCount) == 58)
     {
        gotoAndStop(2);
     }
}


文章来源: AS 3 Flash Countdown Timer For Game Over Screen