ScrollWheelEvent
public class
loom2d.events.ScrollWheelEvent
Description
A ScrollEvent is dispatched by the Stage when the user scrolls their mouse wheel
API overview
Constructor
ScrollWheelEvent
(
type: String
,
delta: Number
,
bubbles: Boolean
= false
)
Creates a new ScrollWheelEvent
Constructor
Attributes
currentTarget: EventDispatcher
Inherited from Event
read-only
The object the event is currently bubbling at.
Constants
CANCEL: String
static
An event type to be utilized in custom events. Not used by Starling right now.
CHANGE: String
static
An event type to be utilized in custom events. Not used by Starling right now.
REMOVE_FROM_JUGGLER: String
static
Event type for an animated object that requests to be removed from the juggler.
SCROLL: String
static
An event type to be utilized in custom events. Not used by Starling right now.
SELECT: String
static
An event type to be utilized in custom events. Not used by Starling right now.
Functions
clone
(): Event
Inherited from Event
Clones the event object with the same arguments and returns the duplicate.
Returns
| Event | The duplicate event object that was cloned. |
getFullTypeName
(): String
Inherited from Object
native
Gets the fully qualified type name of the Object. The fully qualified type name includes the package of the type.
Returns
| String | fully qualified type name of the Object. |
getType
(): Type
Inherited from Object
native
Gets the Type that describes the Object.
Returns
| Type | The Type that describes the object. |
getTypeName
(): String
Inherited from Object
native
Gets the type name of the Object.
Returns
| String | type name of the Object. |
stopImmediatePropagation
(): Void
Inherited from Event
Prevents any other listeners from receiving the event.