A Timer object dispatches a TimerEvent objects whenever the Timer object
reaches the interval specified by the Timer.delay
property.
Static variables
staticinlineread onlyTIMER:EventType<TimerEvent> = "timer"
Defines the value of the type
property of a timer
event object.
This event has the following properties:
Property | Value |
---|---|
bubbles | false |
cancelable | false ; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The Timer object that has reached its interval. |
staticinlineread onlyTIMER_COMPLETE:EventType<TimerEvent> = "timerComplete"
Defines the value of the type
property of a timerComplete
event
object.
This event has the following properties:
Property | Value |
---|---|
bubbles | false |
cancelable | false ; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The Timer object that has completed its requests. |
Constructor
new(type:String, bubbles:Bool = false, cancelable:Bool = false)
Creates an Event object with specific information relevant to
timer
events. Event objects are passed as parameters to event
listeners.
Parameters:
type | The type of the event. Event listeners can access this
information through the inherited |
---|---|
bubbles | Determines whether the Event object bubbles. Event
listeners can access this information through the
inherited |
cancelable | Determines whether the Event object can be canceled.
Event listeners can access this information through the
inherited |
Methods
updateAfterEvent():Void
Instructs OpenFL to render after processing of this event completes, if the display list has been modified.