openfl.events
.. | |
---|---|
ActivityEvent | A Camera or Microphone object dispatches an ActivityEvent object whenever
a camera or microphone reports that it has become active or inactive.
There is only one type of activity event: |
ErrorEvent | An object dispatches an ErrorEvent object when an error causes an asynchronous operation to fail. |
Event | The Event class is used as the base class for the creation of Event objects, which are passed as parameters to event listeners when an event occurs. |
EventDispatcher | The EventDispatcher class is the base class for all classes that dispatch events. The EventDispatcher class implements the IEventDispatcher interface and is the base class for the DisplayObject class. The EventDispatcher class allows any object on the display list to be an event target and as such, to use the methods of the IEventDispatcher interface. |
EventPhase | The EventPhase class provides values for the |
EventType | The EventType abstract type provides type safety when matching dispatch events with the correct type of listener |
FocusEvent | An object dispatches a FocusEvent object when the user changes the focus from one object in the display list to another. There are four types of focus events: |
FullScreenEvent | The Stage object dispatches a FullScreenEvent object whenever the Stage
enters or leaves full-screen display mode. There is only one type of
|
GameInputEvent | The GameInputEvent class represents an event that is dispatched when a game input device has either been added or removed from the application platform. A game input device also dispatches events when it is turned on or off. |
HTTPStatusEvent | The application dispatches HTTPStatusEvent objects when a network request returns an HTTP status code. |
IEventDispatcher | The IEventDispatcher interface defines methods for adding or removing event listeners, checks whether specific types of event listeners are registered, and dispatches events. |
IOErrorEvent | An IOErrorEvent object is dispatched when an error causes input or output operations to fail. |
KeyboardEvent | A KeyboardEvent object id dispatched in response to user input through a
keyboard. There are two types of keyboard events:
|
MouseEvent | A MouseEvent object is dispatched into the event flow whenever mouse events occur. A mouse event is usually generated by a user input device, such as a mouse or a trackball, that uses a pointer. |
NetStatusEvent | A NetConnection, NetStream, or SharedObject object dispatches
NetStatusEvent objects when a it reports its status. There is only one
type of status event: |
ProgressEvent | A ProgressEvent object is dispatched when a load operation has begun or a
socket has received data. These events are usually generated when SWF
files, images or data are loaded into an application. There are two types
of progress events: |
RenderEvent | BETA** |
SecurityErrorEvent | An object dispatches a SecurityErrorEvent object to report the occurrence
of a security error. Security errors reported through this class are
generally from asynchronous operations, such as loading data, in which
security violations may not manifest immediately. Your event listener can
access the object's |
TextEvent | An object dispatches a TextEvent object when a user enters text in a text
field or clicks a hyperlink in an HTML-enabled text field. There are two
types of text events: |
TimerEvent | A Timer object dispatches a TimerEvent objects whenever the Timer object
reaches the interval specified by the |
TouchEvent | The TouchEvent class lets you handle events on devices that detect user contact with the device(such as a finger on a touch screen). When a user interacts with a device such as a mobile phone or tablet with a touch screen, the user typically touches the screen with his or her fingers or a pointing device. You can develop applications that respond to basic touch events(such as a single finger tap) with the TouchEvent class. Create event listeners using the event types defined in this class. For user interaction with multiple points of contact(such as several fingers moving across a touch screen at the same time) use the related GestureEvent, PressAndTapGestureEvent, and TransformGestureEvent classes. And, use the properties and methods of these classes to construct event handlers that respond to the user touching the device. |
UncaughtErrorEvent | An UncaughtErrorEvent object is dispatched by an instance of the
UncaughtErrorEvents class when an uncaught error occurs. An uncaught error
happens when an error is thrown outside of any |
UncaughtErrorEvents | The UncaughtErrorEvents class provides a way to receive uncaught error
events. An instance of this class dispatches an |