ActionScript® 3.0 — dokumentacja dla platformy Adobe® Flash®
Strona główna  |  Ukryj listę pakietów i klas |  Pakiety  |  Klasy  |  Nowości  |  Indeks  |  Dodatki  |  Dlaczego język angielski?
Filtry: Pobieranie danych z serwera...
Pobieranie danych z serwera...
ga.model 

GAEvent  - AS3 ADEP Guides

Pakietga.model
Klasapublic class GAEvent
DziedziczenieGAEvent Inheritance Event Inheritance 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

The GAEvent class represents the event object passed to the event listener for Guide events.



Właściwości publiczne
 WłaściwośćZdefiniowane przez
 Inheritedbubbles : Boolean
[tylko do odczytu] Określa, czy zdarzenie może przechodzić fazę propagacji.
Event
 Inheritedcancelable : Boolean
[tylko do odczytu] Wskazuje, czy można uniemożliwić operacje skojarzone ze zdarzeniem.
Event
 Inheritedconstructor : Object
Odwołanie do obiektu klasy lub funkcji konstruktora, dotyczące danej instancji obiektu.
Object
 InheritedcurrentTarget : Object
[tylko do odczytu] Obiekt przetwarzający aktywnie obiekt Event za pomocą detektora zdarzeń.
Event
 InheritedeventPhase : 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
 Inheritedtarget : Object
[tylko do odczytu] Miejsce docelowe zdarzenia.
Event
 Inheritedtype : String
[tylko do odczytu] Typ zdarzenia.
Event
Metody publiczne
 MetodaZdefiniowane przez
 Inherited
Powiela instancję podklasy Event.
Event
 Inherited
formatToString(className:String, ... arguments):String
Funkcja narzędziowa umożliwiająca implementację metody toString() w niestandardowych klasach Event w języku ActionScript 3.0.
Event
 Inherited
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość.
Object
 Inherited
Sprawdza, czy w odniesieniu do tego zdarzenia wywołano metodę preventDefault().
Event
 Inherited
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr.
Object
 Inherited
Anuluje domyślne ustawienia zdarzenia, o ile zachowanie to może być anulowane.
Event
 Inherited
Wskazuje, czy określona właściwość istnieje i jest przeliczalna.
Object
 Inherited
Ustawia dostępność właściwości dynamicznej używanej w pętlach.
Object
 Inherited
Zapobiega przetwarzaniu wszelkich detektorów zdarzeń w węźle bieżącym i węzłach następujących po nim.
Event
 Inherited
Zapobiega przetwarzaniu wszelkich detektorów zdarzeń w węzłach następujących po węźle bieżącym w przepływie zdarzeń.
Event
 Inherited
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych.
Object
 Inherited
Zwraca ciąg znaków, który zawiera wszystkie właściwości obiektu Event.
Event
 Inherited
Zwraca pierwotną wartość dla określonego obiektu.
Object
Stałe publiczne
 StałaZdefiniowane 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
Szczegół właściwości

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.

Szczegół stałej

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:

PropertyValue
bubblesfalse
cancelablefalse
currentTargetThe 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.
targetThe 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:

PropertyValue
bubblesfalse
cancelablefalse
currentTargetThe 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.
targetThe 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:

PropertyValue
pageThe page that was added.
sectionThe section that contains the added page.
bubblesfalse
cancelablefalse
currentTargetThe 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.
targetThe 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:

PropertyValue
pageThe page that was removed.
sectionThe section that contained the removed page.
bubblesfalse
cancelablefalse
currentTargetThe 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.
targetThe 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:

PropertyValue
bubblesfalse
cancelablefalse
currentTargetThe 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.
targetThe 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:

PropertyValue
sectionThe section that contained the removed page.
bubblesfalse
cancelablefalse
currentTargetThe 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.
targetThe 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:

PropertyValue
sectionThe section that contained the removed page.
bubblesfalse
cancelablefalse
currentTargetThe 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.
targetThe 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.





[ X ]Dlaczego język angielski?
Treść dokumentacji języka ActionScript 3.0 wyświetlana w języku angielskim

Niektóre części dokumentacji języka ActionScript 3.0 nie są przetłumaczone na poszczególne języki. Gdy element nie jest przetłumaczony na dany język, jest wyświetlany tekst angielski. Na przykład opis klasy ga.controls.HelpBox nie jest przetłumaczony na żaden dodatkowy język. Z tego powodu polska wersja dokumentacji zawiera opis klasy ga.controls.HelpBox w języku angielskim.