Packagegraphics.transitions
Interfacepublic interface ITimer extends Resetable, Startable, Stoppable
Implementors FrameTimer, Timer

This interface defines the methods to implement timer object create tile interval process.



Public Properties
 PropertyDefined By
  complete : Signaler
[read-only] The timer complete signal reference.
ITimer
  currentCount : int
[read-only] The total number of times the timer has fired since it started at zero.
ITimer
  delay : Number
The delay, in milliseconds, between timer events.
ITimer
  repeatCount : int
The total number of times the timer is set to run.
ITimer
  timer : Signaler
[read-only] The timer signal reference.
ITimer
Public Methods
 MethodDefined By
 Inherited
reset():void
Reset this object.
Resetable
 Inherited
start():void
Start the process or the command.
Startable
 Inherited
stop():void
Stop the process.
Stoppable
Property Detail
completeproperty
complete:Signaler  [read-only]

The timer complete signal reference.


Implementation
    public function get complete():Signaler
currentCountproperty 
currentCount:int  [read-only]

The total number of times the timer has fired since it started at zero.


Implementation
    public function get currentCount():int
delayproperty 
delay:Number

The delay, in milliseconds, between timer events.


Implementation
    public function get delay():Number
    public function set delay(value:Number):void
repeatCountproperty 
repeatCount:int

The total number of times the timer is set to run.


Implementation
    public function get repeatCount():int
    public function set repeatCount(value:int):void
timerproperty 
timer:Signaler  [read-only]

The timer signal reference.


Implementation
    public function get timer():Signaler