我在闪光灯中有一个倒数计时器。此计时器使用myTimer实例名称在动态文本字段中显示时间。我在flash中的应用程序有一些带有下一个和后退按钮的框架,用户可以进入下一个或后一个框架。定时器代码直接插入第一帧的操作面板中。我的问题是这样的:当我点击下一个或后退按钮去其他帧时,计时器在新帧中消失片刻(最后约1秒显示定时器)?我怎么解决这个问题?
start_bt.addEventListener(MouseEvent.MOUSE_DOWN, starter);
function starter(event:MouseEvent):void
{
var timer:Timer = new Timer(1000,120);
timer.addEventListener(TimerEvent.TIMER, countdown);
timer.start();
function countdown(event:TimerEvent)
{
var totalSecondsLeft:Number = 120 - timer.currentCount;
if (totalSecondsLeft==0)
{
gotoAndStop(18);
}
myTimer.text = timeFormat(totalSecondsLeft);
}
function timeFormat(seconds:int):String
{
var minutes:int;
var sMinutes:String;
var sSeconds:String;
if (seconds > 59)
{
minutes = Math.floor(seconds / 60);
sMinutes = String(minutes);
sSeconds = String(seconds % 60);
}
else
{
sMinutes = "";
sSeconds = String(seconds);
}
if (sSeconds.length == 1)
{
sSeconds = "0" + sSeconds;
}
return sMinutes + ":" + sSeconds;
}
nextFrame();
}