Paquete | ga.model |
Clase | public class GAEvent |
Herencia | GAEvent Event 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 |
GAEvent
class represents the event object passed to the event listener for Guide events.
Propiedad | Definido por | ||
---|---|---|---|
bubbles : Boolean [solo lectura]
Indica si un evento es un evento de propagación. | Event | ||
cancelable : Boolean [solo lectura]
Indica si se puede evitar el comportamiento asociado al evento. | Event | ||
constructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada. | Object | ||
currentTarget : Object [solo lectura]
Objeto que procesa de forma activa el objeto de evento con un detector de eventos. | Event | ||
eventPhase : 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 | ||
target : Object [solo lectura]
El destino del evento. | Event | ||
type : String [solo lectura]
El tipo de evento. | Event |
Constante | Definido 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 |
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.
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:
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"
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:
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"
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:
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"
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:
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"
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:
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"
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:
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"
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:
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, 02:12 PM Z