Static variables
staticinlineread onlySCROLL:EventType<ScrollEvent> = "scroll"
The ScrollEvent.SCROLL
event type is dispatched when the scroll
position of a container changes. This is basically alias for
openfl.events.Event.SCROLL
.
staticinlineread onlySCROLL_COMPLETE:EventType<ScrollEvent> = "scrollComplete"
The ScrollEvent.SCROLL_COMPLETE
event type is dispatched when a
scrolling container completes scrolling.
Available since
1.0.0
.staticinlineread onlySCROLL_START:EventType<ScrollEvent> = "scrollStart"
The ScrollEvent.SCROLL_START
event type is dispatched when a
scrolling container starts scrolling.
Available since
1.0.0
.Static methods
staticdispatch(dispatcher:IEventDispatcher, type:String, bubbles:Bool = false, cancelable:Bool = false, x:Float = 0.0, y:Float = 0.0):Bool
Dispatches a pooled event with the specified properties.
ScrollEvent.dispatch(component, ScrollEvent.SCROLL);
Available since
1.0.0
.