Guide de référence ActionScript® 3.0 pour la plate-forme Adobe® Flash®
Accueil  |  Masquer la liste des packages et des classes |  Packages  |  Classes  |  Nouveautés  |  Index  |  Annexes  |  Pourquoi existe-t-il du contenu en anglais ?
Filtres : Récupération des données du serveur...
Récupération des données du serveur...
ga.model 

GAEvent  - AS3 ADEP Guides

Packagega.model
Classepublic class GAEvent
HéritageGAEvent Inheritance Event Inheritance Object

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 GAEvent class represents the event object passed to the event listener for Guide events.



Propriétés publiques
 PropriétéDéfini par
 Inheritedbubbles : Boolean
[lecture seule] Indique si un événement peut se propager vers le haut (bubbling).
Event
 Inheritedcancelable : Boolean
[lecture seule] Indique si le comportement associé à l’événement peut être évité.
Event
 Inheritedconstructor : Object
Référence à l’objet de classe ou à la fonction constructeur d’une occurrence donnée d’un objet.
Object
 InheritedcurrentTarget : Object
[lecture seule] L’objet qui traite activement l’objet Event avec un écouteur d’événements.
Event
 InheritedeventPhase : 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
 Inheritedtarget : Object
[lecture seule] Cible de l’événement.
Event
 Inheritedtype : String
[lecture seule] Type d’événement.
Event
Méthodes publiques
 MéthodeDéfini par
 Inherited
Duplique une occurrence d’une sous-classe Event.
Event
 Inherited
formatToString(className:String, ... arguments):String
Fonction d’un utilitaire permettant d’implémenter la méthode toString() dans des classes Event ActionScript 3.0 personnalisées.
Event
 Inherited
Indique si la propriété spécifiée d’un objet est définie.
Object
 Inherited
Vérifie si la méthode preventDefault() a été appelée pour l’événement.
Event
 Inherited
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
 Inherited
Annule le comportement par défaut d’un événement si cette opération est possible.
Event
 Inherited
Indique si la propriété spécifiée existe et est énumérable.
Object
 Inherited
Définit la disponibilité d’une propriété dynamique pour les opérations en boucle.
Object
 Inherited
Bloque le traitement des écouteurs d’événement dans le nœud actuel et les suivants dans le flux d’événements.
Event
 Inherited
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
 Inherited
Renvoie la représentation de chaîne de cet objet, formatée selon les paramètres régionaux en vigueur.
Object
 Inherited
Renvoie une chaîne répertoriant toutes les propriétés de l’objet Event.
Event
 Inherited
Renvoie la valeur primitive de l’objet spécifié.
Object
Constantes publiques
 ConstanteDé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
Détails de la propriété

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.

Détails de la constante

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:

PropertyValue
bubblesfalse
cancelablefalse
currentTargetThe 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.
targetThe 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:

PropertyValue
bubblesfalse
cancelablefalse
currentTargetThe 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.
targetThe 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:

PropertyValue
pageThe page that was added.
sectionThe section that contains the added page.
bubblesfalse
cancelablefalse
currentTargetThe 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.
targetThe 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:

PropertyValue
pageThe page that was removed.
sectionThe section that contained the removed page.
bubblesfalse
cancelablefalse
currentTargetThe 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.
targetThe 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:

PropertyValue
bubblesfalse
cancelablefalse
currentTargetThe 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.
targetThe 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:

PropertyValue
sectionThe section that contained the removed page.
bubblesfalse
cancelablefalse
currentTargetThe 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.
targetThe 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:

PropertyValue
sectionThe section that contained the removed page.
bubblesfalse
cancelablefalse
currentTargetThe 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.
targetThe 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.





[ X ]Pourquoi existe-t-il du contenu en anglais ?
Certaines parties du Guide de référence ActionScript 3.0 sont en anglais

Tout le contenu du Guide de référence ActionScript 3.0 n’a pas été traduit dans toutes les langues. Si un élément de langage n’est pas traduit, il s’affiche en anglais. Par exemple, la classe ga.controls.HelpBox n’est traduite dans aucune langue. Ainsi, dans la version française du guide de référence, la classe ga.controls.HelpBox apparaît en anglais.