Paket | ga.model |
Klasse | public class GAEvent |
Vererbung | GAEvent Event Object |
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
GAEvent
class represents the event object passed to the event listener for Guide events.
Eigenschaft | Definiert von | ||
---|---|---|---|
bubbles : Boolean [schreibgeschützt]
Gibt an, ob es sich bei dem Ereignis um ein Bubbling-Ereignis handelt. | Event | ||
cancelable : Boolean [schreibgeschützt]
Gibt an, ob das mit dem Ereignis verknüpfte Verhalten verhindert werden kann. | Event | ||
constructor : Object
Ein Verweis auf das Klassenobjekt oder die Konstruktorfunktion für eine angegebene Objektinstanz. | Object | ||
currentTarget : Object [schreibgeschützt]
Das Objekt, welches das Ereignisobjekt aktiv mit einem Ereignis-Listener verarbeitet. | Event | ||
eventPhase : uint [schreibgeschützt]
Die aktuelle Phase im Ereignisablauf. | 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 [schreibgeschützt]
Das Ereignis-Ziel. | Event | ||
type : String [schreibgeschützt]
Der Ereignistyp. | Event |
Konstante | Definiert von | ||
---|---|---|---|
ERROR_STRING_CHANGED : String = "errorStringChanged" [statisch]
Dispatched by a page, panel, or section whenever the error string for a Guide field changes. | GAEvent | ||
INITIALIZED : String = "initialized" [statisch]
Dispatched when a Guide initializes. | GAEvent | ||
PAGE_ADD : String = "pageAdd" [statisch]
Dispatched when a repeating panel is added to a Guide. | GAEvent | ||
PAGE_REMOVE : String = "pageRemove" [statisch]
Dispatched when a repeating panel is removed from a Guide. | GAEvent | ||
PAGE_SELECTION_CHANGE : String = "pageSelectionChange" [statisch]
Dispatched when a panel is selected. | GAEvent | ||
SECTION_ADD : String = "sectionAdd" [statisch]
Dispatched when a repeating section is added to a Guide. | GAEvent | ||
SECTION_REMOVE : String = "sectionRemove" [statisch]
Dispatched when a repeating section is removed from a Guide. | GAEvent |
page | Eigenschaft |
public var page:Page
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
The associated page when a page specific event is dispatched.
section | Eigenschaft |
public var section:Section
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | AIR 1.0, Flash Player 10.2 |
The associated section when a page or section specific event is dispatched.
ERROR_STRING_CHANGED | Konstante |
public static const ERROR_STRING_CHANGED:String = "errorStringChanged"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | 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 | Konstante |
public static const INITIALIZED:String = "initialized"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | 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 | Konstante |
public static const PAGE_ADD:String = "pageAdd"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | 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 | Konstante |
public static const PAGE_REMOVE:String = "pageRemove"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | 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 | Konstante |
public static const PAGE_SELECTION_CHANGE:String = "pageSelectionChange"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | 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 | Konstante |
public static const SECTION_ADD:String = "sectionAdd"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | 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 | Konstante |
public static const SECTION_REMOVE:String = "sectionRemove"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Handbücher 9 |
Laufzeitversionen: | 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, 10:04 AM Z