·您当前的位置:首页 > 技术教程 > AS2与AS3技术 >

[AS3]AS3中setInterval、setTimeout与Timer类

时间:2013-02-18 23:46CuPlayer.com
在AS3中保留了原始的用法,setInterval()与setTimeout()依然是可以使用的,跟AS2.0有所不同的是增加了,Timer()方法

在AS3中保留了原始的用法,setInterval()与setTimeout()依然是可以使用的,跟AS2.0有所不同的是增加了,Timer()方法。

时间间隔可以用 setInterval 命令来创建并用 clearInterval 命令来终止。setInterval 所用的参数有两种格式。在第一种格式中,你传递给 setInterval 的参数可以是一个函数名,一段时间上的间隔以及一些传递给前面函数的相关参数。当 setInterval 运行时它会依照规定的时间间隔依次将列出的参数传递给指定的函数,直到你调用 clearInterval 将其终止。

1、原始方法:

setInterval(closure:Function, delay:Number, ... arguments):uint
setTimeout(closure:Function, delay:Number, ... arguments):uint

注意返回类型是uint,所在CLASS:flash.utils.*

2、新方法:

  1. package 
  2. import flash.display.Sprite; 
  3. import flash.events.TimerEvent; 
  4. import flash.utils.Timer; 
  5.  
  6. public class ShortTimer extends Sprite 
  7. public function ShortTimer() 
  8. // creates a new five-second Timer 
  9. var minuteTimer:Timer = new Timer(1000, 5); 
  10.  
  11. // designates listeners for the interval and completion events 
  12. minuteTimer.addEventListener(TimerEvent.TIMER, onTick); 
  13. minuteTimer.addEventListener(TimerEvent.TIMER_COMPLETE, onTimerComplete); 
  14.  
  15. // starts the timer ticking 
  16. minuteTimer.start(); 
  17.  
  18. public function onTick(evt:TimerEvent):void 
  19. // displays the tick count so far 
  20. // The target of this event is the Timer instance itself. 
  21. trace("tick " + evt.target.currentCount); 
  22.  
  23. public function onTimerComplete(evt:TimerEvent):void 
  24. trace("CuPlayer.com提示:Time's Up!"); 
  25.  
  26. CuPlayer.com提示输出结果如下: 
  27.  
  28. tick 1 
  29. tick 2 
  30. tick 3 
  31. tick 4 
  32. tick 5 
  33. CuPlayer.com提示:Time's Up! 

热门文章推荐

请稍候...

保利威视云平台-轻松实现点播直播视频应用

酷播云数据统计分析跨平台播放器