我的瑞士法郎没有显示计时器

时间:2013-11-01 04:34:22

标签: actionscript-3 actionscript flashdevelop

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”。我可以在其他场景上运行但不是这个。

1 个答案:

答案 0 :(得分:2)

正如Kaushal De Silva所说,这肯定是字体嵌入问题。

以下是嵌入字体的方法:

  1. 在舞台上选择一个TextField
  2. 点击属性面板中的Embed按钮

    Embed fonts in flash

  3. 选择您需要的字符范围

    enter image description here

  4. 点击OK

  5. 这就是它。