Paket | mx.events |
Klass | public class AIREvent |
Arv | AIREvent Event Object |
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | AIR 1.1 |
Relaterade API-element
Metod | Definieras med | ||
---|---|---|---|
Constructor. | AIREvent | ||
Skapar ett duplikat av en instans av en Event-underklass. | Event | ||
Ett verktyg som används för att implementera metoden toString() i de anpassade klasserna ActionScript 3.0. | Event | ||
Anger om det finns en egenskap angiven för ett objekt. | Object | ||
Kontrollerar om preventDefault()-metoden har anropats för händelsen. | Event | ||
Anger om en instans av klassen Object finns i prototypkedjan för objektet som anges som parameter. | Object | ||
Avbryter en händelses standardbeteende om det beteendet kan avbrytas. | Event | ||
Anger om den angivna egenskapen finns och är uppräkningsbar. | Object | ||
Anger tillgänglighet för en dynamisk egenskap för slingåtgärder. | Object | ||
Förhindrar behandling av händelsehanterare i den aktuella noden och alla noder som följer den aktuella noden i händelseflödet. | Event | ||
Förhindrar behandling av händelsehanterare i noder som följer den aktuella noden i händelseflödet. | Event | ||
Returnerar det här objektets strängrepresentation, formaterad i enlighet med språkspecifika konventioner. | Object | ||
Returnerar en sträng som innehåller alla egenskaper i Event-objektet. | Event | ||
Returnerar det angivna objektets primitiva värde. | Object |
Konstant | Definieras med | ||
---|---|---|---|
APPLICATION_ACTIVATE : String = "applicationActivate" [statisk]
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" [statisk]
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" [statisk]
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" [statisk]
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" [statisk]
The AIREvent.WINDOW_DEACTIVATE constant defines the value of the
type property of the event object for a
windowDeactivate event. | AIREvent |
AIREvent | () | Konstruktor |
public function AIREvent(type:String, bubbles:Boolean = false, cancelable:Boolean = false)
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | AIR 1.1 |
Constructor.
Parametrartype: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 | Konstant |
public static const APPLICATION_ACTIVATE:String = "applicationActivate"
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | 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 | Konstant |
public static const APPLICATION_DEACTIVATE:String = "applicationDeactivate"
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | 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 | Konstant |
public static const WINDOW_ACTIVATE:String = "windowActivate"
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | 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 | Konstant |
public static const WINDOW_COMPLETE:String = "windowComplete"
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | 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 | Konstant |
public static const WINDOW_DEACTIVATE:String = "windowDeactivate"
Språkversion: | ActionScript 3.0 |
Produktversion: | Flex 3 |
Körningsmiljöversioner: | 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, 01:40 PM Z