| Pakiet | lc.procmgmt.events |
| Klasa | public class SwfAppEvent |
| Dziedziczenie | SwfAppEvent Event Object |
| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
SwfAppEvent event is used to communicate between an application built with Flex
(Flex application and Workspace).
| Metoda | Zdefiniowane przez | ||
|---|---|---|---|
SwfAppEvent(type:String)
Constructor. | SwfAppEvent | ||
![]() |
Powiela instancję podklasy Event. | Event | |
![]() |
Funkcja narzędziowa umożliwiająca implementację metody toString() w niestandardowych klasach Event w języku ActionScript 3.0. | Event | |
![]() |
Wskazuje, czy dla obiektu zdefiniowano określoną właściwość. | Object | |
![]() |
Sprawdza, czy w odniesieniu do tego zdarzenia wywołano metodę preventDefault(). | Event | |
![]() |
Wskazuje, czy instancja klasy Object należy do łańcucha prototypów obiektu określonego jako parametr. | Object | |
![]() |
Anuluje domyślne ustawienia zdarzenia, o ile zachowanie to może być anulowane. | Event | |
![]() |
Wskazuje, czy określona właściwość istnieje i jest przeliczalna. | Object | |
![]() |
Ustawia dostępność właściwości dynamicznej używanej w pętlach. | Object | |
![]() |
Zapobiega przetwarzaniu wszelkich detektorów zdarzeń w węźle bieżącym i węzłach następujących po nim. | Event | |
![]() |
Zapobiega przetwarzaniu wszelkich detektorów zdarzeń w węzłach następujących po węźle bieżącym w przepływie zdarzeń. | Event | |
![]() |
Zwraca ciąg reprezentujący obiekt — sformatowany zgodnie z konwencjami właściwymi dla ustawień regionalnych. | Object | |
![]() |
Zwraca ciąg znaków, który zawiera wszystkie właściwości obiektu Event. | Event | |
![]() |
Zwraca pierwotną wartość dla określonego obiektu. | Object | |
| Stała | Zdefiniowane przez | ||
|---|---|---|---|
| CLOSE : String = "close" [statyczny]
A special value that specifies to close the Flex application. | SwfAppEvent | ||
| FULL_SCREEN : String = "maximize" [statyczny]
A special value that specifies to display the Flex application in full screen mode. | SwfAppEvent | ||
| HIDE_ALL_CONTAINER_VIEWS : String = "hideAllContainerViews" [statyczny]
A special value that specifies to the Flex application to hide all views except for the Flex application itself. | SwfAppEvent | ||
| HIDE_ATTACHMENTS_VIEW : String = "hideAttachmentsView" [statyczny]
A special value that specifies to the Flex application to hide the Task Attachments view. | SwfAppEvent | ||
| HIDE_AUDIT_VIEW : String = "hideAuditView" [statyczny]
A special value that specifies to the Flex application to hide the Task Audit view. | SwfAppEvent | ||
| HIDE_DIRECTIVES_VIEW : String = "hideDirectivesView" [statyczny]
A special value that specifies to the Flex application to hide the Task Directives view. | SwfAppEvent | ||
| HIDE_TASK_DETAILS_VIEW : String = "hideTaskDetailsView" [statyczny]
A special value that specifies to the Flex application to hide the Task Details view. | SwfAppEvent | ||
| HIDE_TASK_FORM_VIEW : String = "hideFormView" [statyczny]
A special value that specifies to the Flex application to hide the Task Form view. | SwfAppEvent | ||
| MINIMIZE_SCREEN : String = "minimize" [statyczny]
A special value that specifies to display the Flex application in normal screen mode, instead of fullscreen mode. | SwfAppEvent | ||
| SHOW_ATTACHMENTS_VIEW : String = "showAttachmentsView" [statyczny]
A special value that specifies to the Flex application to display the Task Attachments view. | SwfAppEvent | ||
| SHOW_AUDIT_VIEW : String = "showAuditView" [statyczny]
A special value that specifies to the Flex application to display the Task Audit view. | SwfAppEvent | ||
| SHOW_DIRECTIVES_VIEW : String = "showDirectivesView" [statyczny]
A special value that specifies to the Flex application to display the Task Directives view. | SwfAppEvent | ||
| SHOW_TASK_DETAILS_VIEW : String = "showTaskDetailsView" [statyczny]
A special value that specifies to the Flex applicatin to display the Task Details view. | SwfAppEvent | ||
| SHOW_TASK_FORM_VIEW : String = "showFormView" [statyczny]
A special value that specifies to the Flex application to display Task Form view. | SwfAppEvent | ||
| UNLOAD : String = "unload" [statyczny]
A special value that specifies to unload the Flex application. | SwfAppEvent | ||
SwfAppEvent | () | Konstruktor |
public function SwfAppEvent(type:String)| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
Parametrytype:String — Specifies the type of event to create. You can use an event type defined
in this class, such as hideTaskDetailsView.
|
CLOSE | Stała |
public static const CLOSE:String = "close"| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to close the Flex application.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
FULL_SCREEN | Stała |
public static const FULL_SCREEN:String = "maximize"| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to display the Flex application in full screen mode.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
HIDE_ALL_CONTAINER_VIEWS | Stała |
public static const HIDE_ALL_CONTAINER_VIEWS:String = "hideAllContainerViews"| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to hide all views except for the Flex application itself.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
HIDE_ATTACHMENTS_VIEW | Stała |
public static const HIDE_ATTACHMENTS_VIEW:String = "hideAttachmentsView"| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to hide the Task Attachments view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
HIDE_AUDIT_VIEW | Stała |
public static const HIDE_AUDIT_VIEW:String = "hideAuditView"| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to hide the Task Audit view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
HIDE_DIRECTIVES_VIEW | Stała |
public static const HIDE_DIRECTIVES_VIEW:String = "hideDirectivesView"| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to hide the Task Directives view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
HIDE_TASK_DETAILS_VIEW | Stała |
public static const HIDE_TASK_DETAILS_VIEW:String = "hideTaskDetailsView"| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to hide the Task Details view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
HIDE_TASK_FORM_VIEW | Stała |
public static const HIDE_TASK_FORM_VIEW:String = "hideFormView"| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to hide the Task Form view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
MINIMIZE_SCREEN | Stała |
public static const MINIMIZE_SCREEN:String = "minimize"| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to display the Flex application in normal screen mode, instead of fullscreen mode.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
SHOW_ATTACHMENTS_VIEW | Stała |
public static const SHOW_ATTACHMENTS_VIEW:String = "showAttachmentsView"| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to display the Task Attachments view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
SHOW_AUDIT_VIEW | Stała |
public static const SHOW_AUDIT_VIEW:String = "showAuditView"| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to display the Task Audit view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
SHOW_DIRECTIVES_VIEW | Stała |
public static const SHOW_DIRECTIVES_VIEW:String = "showDirectivesView"| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to display the Task Directives view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
SHOW_TASK_DETAILS_VIEW | Stała |
public static const SHOW_TASK_DETAILS_VIEW:String = "showTaskDetailsView"| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex applicatin to display the Task Details view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
SHOW_TASK_FORM_VIEW | Stała |
public static const SHOW_TASK_FORM_VIEW:String = "showFormView"| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to the Flex application to display Task Form view.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
UNLOAD | Stała |
public static const UNLOAD:String = "unload"| Wersja języka: | ActionScript 3.0 |
| Wersja produktu: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
| Wersje środowiska wykonawczego: | AIR (unsupported), Flash Player 9, Flash Player 10 |
A special value that specifies to unload the Flex application.
The properties of the Event object have the following values:
| Property | Value |
|---|---|
bubbles | True |
cancelable | False; there is no default behavior to cancel. |
currentTarget | The object that is actively processing the Event object with an event listener. |
target | The object that dispatched the event;
use the currentTarget property to always access the
Object listening for the event. |
Tue Jun 12 2018, 12:06 PM Z
Ukryj dziedziczone właściwości publiczne
Pokaż dziedziczone właściwości publiczne