Paket | lc.procmgmt.events |
Klasse | public class SwfAppEvent |
Vererbung | SwfAppEvent Event Object |
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
SwfAppEvent
event is used to communicate between an application built with Flex
(Flex application and Workspace).
Methode | Definiert von | ||
---|---|---|---|
SwfAppEvent(type:String)
Constructor. | SwfAppEvent | ||
Dupliziert eine Instanz einer Event-Unterklasse. | Event | ||
Eine Dienstprogrammfunktion zur Implementierung der toString()-Methode in benutzerdefinierten ActionScript 3.0 Event-Klassen. | Event | ||
Gibt an, ob für ein Objekt eine bestimmte Eigenschaft definiert wurde. | Object | ||
Überprüft, ob die preventDefault()-Methode bei dem Ereignis aufgerufen wurde. | Event | ||
Gibt an, ob eine Instanz der Object-Klasse in der Prototypkette des Objekts vorhanden ist, das als Parameter angegeben wurde. | Object | ||
Bricht das Standardverhalten eines Ereignisses ab, wenn dieses Verhalten abgebrochen werden kann. | Event | ||
Gibt an, ob die angegebene Eigenschaft vorhanden ist und durchlaufen werden kann. | Object | ||
Legt die Verfügbarkeit einer dynamischen Eigenschaft für Schleifenoperationen fest. | Object | ||
Verhindert die Verarbeitung von Ereignis-Listenern im aktuellen Knoten und in Knoten, die dem aktuellen Knoten im Ereignisablauf nachfolgen. | Event | ||
Verhindert die Verarbeitung von Ereignis-Listenern in Knoten, die dem aktuellen Knoten im Ereignisablauf nachfolgen. | Event | ||
Gibt die Stringdarstellung dieses Objekts zurück, formatiert entsprechend den Konventionen des Gebietsschemas. | Object | ||
Gibt eine Zeichenfolge zurück, die alle Eigenschaften des Ereignisobjekts enthält. | Event | ||
Gibt den Grundwert des angegebenen Objekts zurück. | Object |
Konstante | Definiert von | ||
---|---|---|---|
CLOSE : String = "close" [statisch]
A special value that specifies to close the Flex application. | SwfAppEvent | ||
FULL_SCREEN : String = "maximize" [statisch]
A special value that specifies to display the Flex application in full screen mode. | SwfAppEvent | ||
HIDE_ALL_CONTAINER_VIEWS : String = "hideAllContainerViews" [statisch]
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" [statisch]
A special value that specifies to the Flex application to hide the Task Attachments view. | SwfAppEvent | ||
HIDE_AUDIT_VIEW : String = "hideAuditView" [statisch]
A special value that specifies to the Flex application to hide the Task Audit view. | SwfAppEvent | ||
HIDE_DIRECTIVES_VIEW : String = "hideDirectivesView" [statisch]
A special value that specifies to the Flex application to hide the Task Directives view. | SwfAppEvent | ||
HIDE_TASK_DETAILS_VIEW : String = "hideTaskDetailsView" [statisch]
A special value that specifies to the Flex application to hide the Task Details view. | SwfAppEvent | ||
HIDE_TASK_FORM_VIEW : String = "hideFormView" [statisch]
A special value that specifies to the Flex application to hide the Task Form view. | SwfAppEvent | ||
MINIMIZE_SCREEN : String = "minimize" [statisch]
A special value that specifies to display the Flex application in normal screen mode, instead of fullscreen mode. | SwfAppEvent | ||
SHOW_ATTACHMENTS_VIEW : String = "showAttachmentsView" [statisch]
A special value that specifies to the Flex application to display the Task Attachments view. | SwfAppEvent | ||
SHOW_AUDIT_VIEW : String = "showAuditView" [statisch]
A special value that specifies to the Flex application to display the Task Audit view. | SwfAppEvent | ||
SHOW_DIRECTIVES_VIEW : String = "showDirectivesView" [statisch]
A special value that specifies to the Flex application to display the Task Directives view. | SwfAppEvent | ||
SHOW_TASK_DETAILS_VIEW : String = "showTaskDetailsView" [statisch]
A special value that specifies to the Flex applicatin to display the Task Details view. | SwfAppEvent | ||
SHOW_TASK_FORM_VIEW : String = "showFormView" [statisch]
A special value that specifies to the Flex application to display Task Form view. | SwfAppEvent | ||
UNLOAD : String = "unload" [statisch]
A special value that specifies to unload the Flex application. | SwfAppEvent |
SwfAppEvent | () | Konstruktor |
public function SwfAppEvent(type:String)
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
Parametertype:String — Specifies the type of event to create. You can use an event type defined
in this class, such as hideTaskDetailsView.
|
CLOSE | Konstante |
public static const CLOSE:String = "close"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 | Konstante |
public static const FULL_SCREEN:String = "maximize"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 | Konstante |
public static const HIDE_ALL_CONTAINER_VIEWS:String = "hideAllContainerViews"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 | Konstante |
public static const HIDE_ATTACHMENTS_VIEW:String = "hideAttachmentsView"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 | Konstante |
public static const HIDE_AUDIT_VIEW:String = "hideAuditView"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 | Konstante |
public static const HIDE_DIRECTIVES_VIEW:String = "hideDirectivesView"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 | Konstante |
public static const HIDE_TASK_DETAILS_VIEW:String = "hideTaskDetailsView"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 | Konstante |
public static const HIDE_TASK_FORM_VIEW:String = "hideFormView"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 | Konstante |
public static const MINIMIZE_SCREEN:String = "minimize"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 | Konstante |
public static const SHOW_ATTACHMENTS_VIEW:String = "showAttachmentsView"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 | Konstante |
public static const SHOW_AUDIT_VIEW:String = "showAuditView"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 | Konstante |
public static const SHOW_DIRECTIVES_VIEW:String = "showDirectivesView"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 | Konstante |
public static const SHOW_TASK_DETAILS_VIEW:String = "showTaskDetailsView"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 | Konstante |
public static const SHOW_TASK_FORM_VIEW:String = "showFormView"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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 | Konstante |
public static const UNLOAD:String = "unload"
Sprachversion: | ActionScript 3.0 |
Produktversion: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Laufzeitversionen: | 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, 10:04 AM Z