Package | ga.model |
Classe | public class GAEvent |
Héritage | GAEvent ![]() ![]() |
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Versions du moteur d’exécution: | AIR 1.0, Flash Player 10.2 |
GAEvent
class represents the event object passed to the event listener for Guide events.
Propriété | Défini par | ||
---|---|---|---|
![]() | bubbles : Boolean [lecture seule]
Indique si un événement peut se propager vers le haut (bubbling). | Event | |
![]() | cancelable : Boolean [lecture seule]
Indique si le comportement associé à l’événement peut être évité. | Event | |
![]() | constructor : Object
Référence à l’objet de classe ou à la fonction constructeur d’une occurrence donnée d’un objet. | Object | |
![]() | currentTarget : Object [lecture seule]
L’objet qui traite activement l’objet Event avec un écouteur d’événements. | Event | |
![]() | eventPhase : uint [lecture seule]
Phase actuelle du flux d’événements. | Event | |
page : Page
The associated page when a page specific event is dispatched. | GAEvent | ||
section : Section
The associated section when a page or section specific event is dispatched. | GAEvent | ||
![]() | target : Object [lecture seule]
Cible de l’événement. | Event | |
![]() | type : String [lecture seule]
Type d’événement. | Event |
Méthode | Défini par | ||
---|---|---|---|
![]() |
Duplique une occurrence d’une sous-classe Event. | Event | |
![]() |
Fonction d’un utilitaire permettant d’implémenter la méthode toString() dans des classes Event ActionScript 3.0 personnalisées. | Event | |
![]() |
Indique si la propriété spécifiée d’un objet est définie. | Object | |
![]() |
Vérifie si la méthode preventDefault() a été appelée pour l’événement. | Event | |
![]() |
Indique si une occurrence de la classe Object figure dans la chaîne de prototype de l’objet spécifié en tant que paramètre. | Object | |
![]() |
Annule le comportement par défaut d’un événement si cette opération est possible. | Event | |
![]() |
Indique si la propriété spécifiée existe et est énumérable. | Object | |
![]() |
Définit la disponibilité d’une propriété dynamique pour les opérations en boucle. | Object | |
![]() |
Bloque le traitement des écouteurs d’événement dans le nœud actuel et les suivants dans le flux d’événements. | Event | |
![]() |
Bloque le traitement des écouteurs d’événement dans les nœuds qui suivent le nœud actuel dans le flux d’événements. | Event | |
![]() |
Renvoie la représentation de chaîne de cet objet, formatée selon les paramètres régionaux en vigueur. | Object | |
![]() |
Renvoie une chaîne répertoriant toutes les propriétés de l’objet Event. | Event | |
![]() |
Renvoie la valeur primitive de l’objet spécifié. | Object |
Constante | Défini par | ||
---|---|---|---|
ERROR_STRING_CHANGED : String = "errorStringChanged" [statique]
Dispatched by a page, panel, or section whenever the error string for a Guide field changes. | GAEvent | ||
INITIALIZED : String = "initialized" [statique]
Dispatched when a Guide initializes. | GAEvent | ||
PAGE_ADD : String = "pageAdd" [statique]
Dispatched when a repeating panel is added to a Guide. | GAEvent | ||
PAGE_REMOVE : String = "pageRemove" [statique]
Dispatched when a repeating panel is removed from a Guide. | GAEvent | ||
PAGE_SELECTION_CHANGE : String = "pageSelectionChange" [statique]
Dispatched when a panel is selected. | GAEvent | ||
SECTION_ADD : String = "sectionAdd" [statique]
Dispatched when a repeating section is added to a Guide. | GAEvent | ||
SECTION_REMOVE : String = "sectionRemove" [statique]
Dispatched when a repeating section is removed from a Guide. | GAEvent |
page | propriété |
public var page:Page
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Versions du moteur d’exécution: | AIR 1.0, Flash Player 10.2 |
The associated page when a page specific event is dispatched.
section | propriété |
public var section:Section
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Versions du moteur d’exécution: | AIR 1.0, Flash Player 10.2 |
The associated section when a page or section specific event is dispatched.
ERROR_STRING_CHANGED | Constante |
public static const ERROR_STRING_CHANGED:String = "errorStringChanged"
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Versions du moteur d’exécution: | AIR 1.0, Flash Player 10.2 |
Dispatched by a page, panel, or section whenever the error string for a Guide field changes.
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 . |
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. |
INITIALIZED | Constante |
public static const INITIALIZED:String = "initialized"
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Versions du moteur d’exécution: | AIR 1.0, Flash Player 10.2 |
Dispatched when a Guide initializes.
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 . |
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. |
PAGE_ADD | Constante |
public static const PAGE_ADD:String = "pageAdd"
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Versions du moteur d’exécution: | AIR 1.0, Flash Player 10.2 |
Dispatched when a repeating panel is added to a Guide.
The properties of the event object have the following values:
Property | Value |
---|---|
page | The page that was added. |
section | The section that contains the added page. |
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 . |
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. |
PAGE_REMOVE | Constante |
public static const PAGE_REMOVE:String = "pageRemove"
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Versions du moteur d’exécution: | AIR 1.0, Flash Player 10.2 |
Dispatched when a repeating panel is removed from a Guide.
The properties of the event object have the following values:
Property | Value |
---|---|
page | The page that was removed. |
section | The section that contained the removed page. |
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 . |
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. |
PAGE_SELECTION_CHANGE | Constante |
public static const PAGE_SELECTION_CHANGE:String = "pageSelectionChange"
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Versions du moteur d’exécution: | AIR 1.0, Flash Player 10.2 |
Dispatched when a panel is selected.
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 . |
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. |
SECTION_ADD | Constante |
public static const SECTION_ADD:String = "sectionAdd"
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Versions du moteur d’exécution: | AIR 1.0, Flash Player 10.2 |
Dispatched when a repeating section is added to a Guide.
The properties of the event object have the following values:
Property | Value |
---|---|
section | The section that contained the removed page. |
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 . |
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. |
SECTION_REMOVE | Constante |
public static const SECTION_REMOVE:String = "sectionRemove"
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Versions du moteur d’exécution: | AIR 1.0, Flash Player 10.2 |
Dispatched when a repeating section is removed from a Guide.
The properties of the event object have the following values:
Property | Value |
---|---|
section | The section that contained the removed page. |
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 . |
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. |
Tue Jun 12 2018, 09:30 AM Z