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();
}
我正在尝试在我的舞台上放一个倒计时器,但是舞台上没有显示计时器。打印的单词不是“秒左”,而是“secons eft”。我可以在其他场景上运行但不是这个。
答案 0 :(得分:2)
正如Kaushal De Silva所说,这肯定是字体嵌入问题。
以下是嵌入字体的方法:
点击属性面板中的Embed
按钮
选择您需要的字符范围
点击OK
这就是它。