ActionScript 3 如何设置,启动和使用Timer
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 如何设置,启动和使用Timer相关的知识,希望对你有一定的参考价值。
import flash.utils.Timer;
import flash.events.TimerEvent;
import flash.events.Event;
private var myTimer:Timer = new Timer(delay, repeat);
myTimer.addEventListener(TimerEvent.TIMER, timerHandler);
myTimer.addEventListener(TimerEvent.TIMER_COMPLETE, completeHandler);
myTimer.start();
private function timerHandler(e:TimerEvent):void
{
repeat--;
statusTextField.text = ((delay * repeat) / 1000) + " seconds left.";
};
private function completeHandler(e:TimerEvent):void
{
statusTextField.text = "Times Up.";
inputTextField.type = TextFieldType.DYNAMIC;
};
以上是关于ActionScript 3 如何设置,启动和使用Timer的主要内容,如果未能解决你的问题,请参考以下文章
ActionScript 3 使用AS3和Flex 4.5重新启动Air Application
动画未在 actionscript 3.0 (flash cc) 中启动
如何解决 用于 actionscript 3.0 编译的 java 虚拟机内存不足
如何在 Actionscript 3.0 中使用补间形状?
ActionScript 3 基本的TweenLite导入和设置
ActionScript 3 链接在浏览器中启动pdf文件