Event Class
Creates an homogenous object for tracking events so users can know what to expect.
Constructor
Item Index
Methods
stopImmediatePropagation
()
Stops the propagation of events to sibling listeners (no longer calls any listeners).
stopPropagation
()
Stops the propagation of events up the scene graph (prevents bubbling).
Properties
stopped
Bool
private
Tracks the state of bubbling propagation. Do not
set this directly, instead use event.stopPropagation()
stoppedImmediate
Bool
private
Tracks the state of sibling listener propagation. Do not
set this directly, instead use event.stopImmediatePropagation()
target
Dynamic
The original target the event triggered on.