| 패키지 | 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, 03:17 PM Z
상속되는 공용 속성 숨기기
상속되는 공용 속성 표시