Pakiet | ga.model |
Klasa | public class GAEvent |
Dziedziczenie | GAEvent Event Object |
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Wersje środowiska wykonawczego: | AIR 1.0, Flash Player 10.2 |
GAEvent
class represents the event object passed to the event listener for Guide events.
Właściwość | Zdefiniowane przez | ||
---|---|---|---|
bubbles : Boolean [tylko do odczytu]
Określa, czy zdarzenie może przechodzić fazę propagacji. | Event | ||
cancelable : Boolean [tylko do odczytu]
Wskazuje, czy można uniemożliwić operacje skojarzone ze zdarzeniem. | Event | ||
constructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu. | Object | ||
currentTarget : Object [tylko do odczytu]
Obiekt przetwarzający aktywnie obiekt Event za pomocą detektora zdarzeń. | Event | ||
eventPhase : uint [tylko do odczytu]
Bieżąca faza przepływu zdarzeń. | 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 [tylko do odczytu]
Miejsce docelowe zdarzenia. | Event | ||
type : String [tylko do odczytu]
Typ zdarzenia. | Event |
Stała | Zdefiniowane przez | ||
---|---|---|---|
ERROR_STRING_CHANGED : String = "errorStringChanged" [statyczny]
Dispatched by a page, panel, or section whenever the error string for a Guide field changes. | GAEvent | ||
INITIALIZED : String = "initialized" [statyczny]
Dispatched when a Guide initializes. | GAEvent | ||
PAGE_ADD : String = "pageAdd" [statyczny]
Dispatched when a repeating panel is added to a Guide. | GAEvent | ||
PAGE_REMOVE : String = "pageRemove" [statyczny]
Dispatched when a repeating panel is removed from a Guide. | GAEvent | ||
PAGE_SELECTION_CHANGE : String = "pageSelectionChange" [statyczny]
Dispatched when a panel is selected. | GAEvent | ||
SECTION_ADD : String = "sectionAdd" [statyczny]
Dispatched when a repeating section is added to a Guide. | GAEvent | ||
SECTION_REMOVE : String = "sectionRemove" [statyczny]
Dispatched when a repeating section is removed from a Guide. | GAEvent |
page | właściwość |
public var page:Page
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Wersje środowiska wykonawczego: | AIR 1.0, Flash Player 10.2 |
The associated page when a page specific event is dispatched.
section | właściwość |
public var section:Section
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Wersje środowiska wykonawczego: | AIR 1.0, Flash Player 10.2 |
The associated section when a page or section specific event is dispatched.
ERROR_STRING_CHANGED | Stała |
public static const ERROR_STRING_CHANGED:String = "errorStringChanged"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Wersje środowiska wykonawczego: | 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 | Stała |
public static const INITIALIZED:String = "initialized"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Wersje środowiska wykonawczego: | 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 | Stała |
public static const PAGE_ADD:String = "pageAdd"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Wersje środowiska wykonawczego: | 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 | Stała |
public static const PAGE_REMOVE:String = "pageRemove"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Wersje środowiska wykonawczego: | 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 | Stała |
public static const PAGE_SELECTION_CHANGE:String = "pageSelectionChange"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Wersje środowiska wykonawczego: | 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 | Stała |
public static const SECTION_ADD:String = "sectionAdd"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Wersje środowiska wykonawczego: | 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 | Stała |
public static const SECTION_REMOVE:String = "sectionRemove"
Wersja języka: | ActionScript 3.0 |
Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Wersje środowiska wykonawczego: | 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, 12:06 PM Z