Referencia de ActionScript® 3.0 para la plataforma de Adobe® Flash®
Inicio  |  Ocultar lista de paquetes y clases |  Paquetes  |  Clases  |  Novedades  |  Índice  |  Apéndices  |  ¿Por qué hay texto en inglés?
Filtros: Recuperando datos del servidor...
Recuperando datos del servidor...
ga.model 

GAEvent  - AS3 ADEP Guides

Paquetega.model
Clasepublic class GAEvent
HerenciaGAEvent Inheritance Event Inheritance Object

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Document Services - Guides 9
Versiones de motor de ejecución: AIR 1.0, Flash Player 10.2

The GAEvent class represents the event object passed to the event listener for Guide events.



Propiedades públicas
 PropiedadDefinido por
 Inheritedbubbles : Boolean
[solo lectura] Indica si un evento es un evento de propagación.
Event
 Inheritedcancelable : Boolean
[solo lectura] Indica si se puede evitar el comportamiento asociado al evento.
Event
 Inheritedconstructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada.
Object
 InheritedcurrentTarget : Object
[solo lectura] Objeto que procesa de forma activa el objeto de evento con un detector de eventos.
Event
 InheritedeventPhase : uint
[solo lectura] La fase actual en el flujo del evento.
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
[solo lectura] El destino del evento.
Event
 Inheritedtype : String
[solo lectura] El tipo de evento.
Event
Métodos públicos
 MétodoDefinido por
 Inherited
Duplica una instancia de la subclase Event.
Event
 Inherited
formatToString(className:String, ... arguments):String
Una función de utilidad para implementar el método toString() en las clases Event personalizadas de ActionScript 3.0.
Event
 Inherited
Indica si un objeto tiene definida una propiedad especificada.
Object
 Inherited
Comprueba si se ha llamado a preventDefault() en el evento.
Event
 Inherited
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro.
Object
 Inherited
Cancela el comportamiento predeterminado de un evento si es posible cancelarlo.
Event
 Inherited
Indica si existe la propiedad especificada y si es enumerable.
Object
 Inherited
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle.
Object
 Inherited
Impide el proceso de cualquier detector de eventos en el nodo actual y los nodos siguientes en el flujo del evento.
Event
 Inherited
Impide el proceso de cualquier detector de eventos en nodos siguientes al nodo actual.
Event
 Inherited
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional.
Object
 Inherited
Devuelve una cadena que contiene todas las propiedades del objeto de evento.
Event
 Inherited
Devuelve el valor simple del objeto especificado.
Object
Constantes públicas
 ConstanteDefinido por
  ERROR_STRING_CHANGED : String = "errorStringChanged"
[estática] Dispatched by a page, panel, or section whenever the error string for a Guide field changes.
GAEvent
  INITIALIZED : String = "initialized"
[estática] Dispatched when a Guide initializes.
GAEvent
  PAGE_ADD : String = "pageAdd"
[estática] Dispatched when a repeating panel is added to a Guide.
GAEvent
  PAGE_REMOVE : String = "pageRemove"
[estática] Dispatched when a repeating panel is removed from a Guide.
GAEvent
  PAGE_SELECTION_CHANGE : String = "pageSelectionChange"
[estática] Dispatched when a panel is selected.
GAEvent
  SECTION_ADD : String = "sectionAdd"
[estática] Dispatched when a repeating section is added to a Guide.
GAEvent
  SECTION_REMOVE : String = "sectionRemove"
[estática] Dispatched when a repeating section is removed from a Guide.
GAEvent
Información sobre propiedades

page

propiedad
public var page:Page

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Document Services - Guides 9
Versiones de motor de ejecución: AIR 1.0, Flash Player 10.2

The associated page when a page specific event is dispatched.

section

propiedad 
public var section:Section

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Document Services - Guides 9
Versiones de motor de ejecución: AIR 1.0, Flash Player 10.2

The associated section when a page or section specific event is dispatched.

Información sobre constantes

ERROR_STRING_CHANGED

Constante
public static const ERROR_STRING_CHANGED:String = "errorStringChanged"

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Document Services - Guides 9
Versiones de motor de ejecución: 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"

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Document Services - Guides 9
Versiones de motor de ejecución: 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"

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Document Services - Guides 9
Versiones de motor de ejecución: 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"

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Document Services - Guides 9
Versiones de motor de ejecución: 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"

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Document Services - Guides 9
Versiones de motor de ejecución: 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"

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Document Services - Guides 9
Versiones de motor de ejecución: 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"

Versión del lenguaje: ActionScript 3.0
Versión de producto: Adobe Digital Enterprise Platform Document Services - Guides 9
Versiones de motor de ejecución: 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 ]¿Por qué hay texto en inglés?
Cierto contenido de la Referencia de ActionScript 3.0 se muestra en inglés

No todo el contenido de la Referencia de ActionScript 3.0 se traduce a todos los idiomas. Si un elemento del lenguaje no se traduce, aparecerá en inglés. Por ejemplo, la clase ga.controls.HelpBox no está traducida en ningún idioma. Por lo tanto, en la versión en español de la referencia, la clase ga.controls.HelpBox aparecerá en inglés.