Paquete | mx.events |
Clase | public class AIREvent |
Herencia | AIREvent Event Object |
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | AIR 1.1 |
Elementos de API relacionados
Método | Definido por | ||
---|---|---|---|
Constructor. | AIREvent | ||
Duplica una instancia de la subclase Event. | Event | ||
Una función de utilidad para implementar el método toString() en las clases Event personalizadas de ActionScript 3.0. | Event | ||
Indica si un objeto tiene definida una propiedad especificada. | Object | ||
Comprueba si se ha llamado a preventDefault() en el evento. | Event | ||
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro. | Object | ||
Cancela el comportamiento predeterminado de un evento si es posible cancelarlo. | Event | ||
Indica si existe la propiedad especificada y si es enumerable. | Object | ||
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle. | Object | ||
Impide el proceso de cualquier detector de eventos en el nodo actual y los nodos siguientes en el flujo del evento. | Event | ||
Impide el proceso de cualquier detector de eventos en nodos siguientes al nodo actual. | Event | ||
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional. | Object | ||
Devuelve una cadena que contiene todas las propiedades del objeto de evento. | Event | ||
Devuelve el valor simple del objeto especificado. | Object |
Constante | Definido por | ||
---|---|---|---|
APPLICATION_ACTIVATE : String = "applicationActivate" [estática]
The AIREvent.APPLICATION_ACTIVATE constant defines the value of the
type property of the event object for an
applicationActivate event. | AIREvent | ||
APPLICATION_DEACTIVATE : String = "applicationDeactivate" [estática]
The AIREvent.APPLICATION_DEACTIVATE constant defines the value of the
type property of the event object for an
applicationDeactivate event. | AIREvent | ||
WINDOW_ACTIVATE : String = "windowActivate" [estática]
The AIREvent.WINDOW_ACTIVATE constant defines the value of the
type property of the event object for a
windowActivate event. | AIREvent | ||
WINDOW_COMPLETE : String = "windowComplete" [estática]
The AIREvent.WINDOW_COMPLETE constant defines the value of the
type property of the event object for an
windowComplete event. | AIREvent | ||
WINDOW_DEACTIVATE : String = "windowDeactivate" [estática]
The AIREvent.WINDOW_DEACTIVATE constant defines the value of the
type property of the event object for a
windowDeactivate event. | AIREvent |
AIREvent | () | Información sobre |
public function AIREvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | AIR 1.1 |
Constructor.
Parámetrostype:String — The event type; indicates the action that caused the event.
| |
bubbles:Boolean (default = false ) — Specifies whether the event can bubble up
the display list hierarchy.
| |
cancelable:Boolean (default = false ) — Specifies whether the behavior
associated with the event can be prevented.
|
APPLICATION_ACTIVATE | Constante |
public static const APPLICATION_ACTIVATE:String = "applicationActivate"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | AIR 1.1 |
The AIREvent.APPLICATION_ACTIVATE constant defines the value of the
type
property of the event object for an
applicationActivate
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
file | The File object associated with this event. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
type | AIREvent.APPLICATION_ACTIVATE |
APPLICATION_DEACTIVATE | Constante |
public static const APPLICATION_DEACTIVATE:String = "applicationDeactivate"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | AIR 1.1 |
The AIREvent.APPLICATION_DEACTIVATE constant defines the value of the
type
property of the event object for an
applicationDeactivate
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
file | The File object associated with this event. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
type | AIREvent.APPLICATION_DEACTIVATE |
WINDOW_ACTIVATE | Constante |
public static const WINDOW_ACTIVATE:String = "windowActivate"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | AIR 1.1 |
The AIREvent.WINDOW_ACTIVATE constant defines the value of the
type
property of the event object for a
windowActivate
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
file | The File object associated with this event. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
type | AIREvent.WINDOW_ACTIVATE |
WINDOW_COMPLETE | Constante |
public static const WINDOW_COMPLETE:String = "windowComplete"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | AIR 1.1 |
The AIREvent.WINDOW_COMPLETE constant defines the value of the
type
property of the event object for an
windowComplete
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
file | The File object associated with this event. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
type | AIREvent.WINDOW_COMPLETE |
WINDOW_DEACTIVATE | Constante |
public static const WINDOW_DEACTIVATE:String = "windowDeactivate"
Versión del lenguaje: | ActionScript 3.0 |
Versión de producto: | Flex 3 |
Versiones de motor de ejecución: | AIR 1.1 |
The AIREvent.WINDOW_DEACTIVATE constant defines the value of the
type
property of the event object for a
windowDeactivate
event.
The properties of the event object have the following values:
Property | Value |
---|---|
bubbles | false |
cancelable | false |
currentTarget | The Object that defines the
event listener that handles the event. For example, if you use
myButton.addEventListener() to register an event listener,
myButton is the value of the currentTarget . |
file | The File object associated with this event. |
target | The Object that dispatched the event;
it is not always the Object listening for the event.
Use the currentTarget property to always access the
Object listening for the event. |
type | AIREvent.WINDOW_DEACTIVATE |
Tue Jun 12 2018, 02:12 PM Z