Пакет | ga.model |
Класс | public class GAEvent |
Наследование | GAEvent Event Object |
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Версии среды выполнения: | AIR 1.0, Flash Player 10.2 |
GAEvent
class represents the event object passed to the event listener for Guide events.
Свойство | Определено | ||
---|---|---|---|
bubbles : Boolean [только для чтения]
Определяет, является ли событие событием восходящей цепочки. | Event | ||
cancelable : Boolean [только для чтения]
Указывает, можно ли предотвратить поведение, связанное с событием. | Event | ||
constructor : Object
Ссылка на объект класса или функцию конструктора для данного экземпляра объекта. | Object | ||
currentTarget : Object [только для чтения]
Объект, активно обрабатывающий объект Event с помощью прослушивателя событий. | Event | ||
eventPhase : uint [только для чтения]
Текущая фаза в потоке событий. | 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 [только для чтения]
Целевой объект события. | Event | ||
type : String [только для чтения]
Тип события. | Event |
Константа | Определено | ||
---|---|---|---|
ERROR_STRING_CHANGED : String = "errorStringChanged" [статические]
Dispatched by a page, panel, or section whenever the error string for a Guide field changes. | GAEvent | ||
INITIALIZED : String = "initialized" [статические]
Dispatched when a Guide initializes. | GAEvent | ||
PAGE_ADD : String = "pageAdd" [статические]
Dispatched when a repeating panel is added to a Guide. | GAEvent | ||
PAGE_REMOVE : String = "pageRemove" [статические]
Dispatched when a repeating panel is removed from a Guide. | GAEvent | ||
PAGE_SELECTION_CHANGE : String = "pageSelectionChange" [статические]
Dispatched when a panel is selected. | GAEvent | ||
SECTION_ADD : String = "sectionAdd" [статические]
Dispatched when a repeating section is added to a Guide. | GAEvent | ||
SECTION_REMOVE : String = "sectionRemove" [статические]
Dispatched when a repeating section is removed from a Guide. | GAEvent |
page | свойство |
public var page:Page
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Версии среды выполнения: | AIR 1.0, Flash Player 10.2 |
The associated page when a page specific event is dispatched.
section | свойство |
public var section:Section
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Версии среды выполнения: | AIR 1.0, Flash Player 10.2 |
The associated section when a page or section specific event is dispatched.
ERROR_STRING_CHANGED | Константа |
public static const ERROR_STRING_CHANGED:String = "errorStringChanged"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Версии среды выполнения: | 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 | Константа |
public static const INITIALIZED:String = "initialized"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Версии среды выполнения: | 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 | Константа |
public static const PAGE_ADD:String = "pageAdd"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Версии среды выполнения: | 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 | Константа |
public static const PAGE_REMOVE:String = "pageRemove"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Версии среды выполнения: | 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 | Константа |
public static const PAGE_SELECTION_CHANGE:String = "pageSelectionChange"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Версии среды выполнения: | 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 | Константа |
public static const SECTION_ADD:String = "sectionAdd"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Версии среды выполнения: | 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 | Константа |
public static const SECTION_REMOVE:String = "sectionRemove"
Язык версии: | ActionScript 3.0 |
Версия продукта: | Adobe Digital Enterprise Platform Document Services - Guides 9 |
Версии среды выполнения: | 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, 11:34 AM Z