Pakket | lc.procmgmt.events |
Klasse | public class SwfAppEvent |
Overerving | SwfAppEvent Event Object |
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | 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 | Gedefinieerd door | ||
---|---|---|---|
SwfAppEvent(type:String)
Constructor. | SwfAppEvent | ||
Dupliceert een instantie van een subklasse Event. | Event | ||
Een hulpprogrammafunctie voor de implementatie van de methode toString() in aangepaste ActionScript 3.0-Event-klassen. | Event | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Controleert of de methode preventDefault() is aangeroepen voor de gebeurtenis. | Event | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Annuleert het standaardgedrag van een gebeurtenis wanneer dat gedrag kan worden geannuleerd. | Event | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Voorkomt het verwerken van gebeurtenislisteners in het huidige knooppunt en volgende knooppunten in de gebeurtenisstroom. | Event | ||
Voorkomt het verwerken van gebeurtenislisteners in knooppunten die volgen op het huidige knooppunt in de gebeurtenisstroom. | Event | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeks die alle eigenschappen van het Event-object bevat. | Event | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Constante | Gedefinieerd door | ||
---|---|---|---|
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 | () | Constructor |
public function SwfAppEvent(type:String)
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
Parameterstype:String — Specifies the type of event to create. You can use an event type defined
in this class, such as hideTaskDetailsView.
|
CLOSE | Constante |
public static const CLOSE:String = "close"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | 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 | Constante |
public static const FULL_SCREEN:String = "maximize"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | 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 | Constante |
public static const HIDE_ALL_CONTAINER_VIEWS:String = "hideAllContainerViews"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | 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 | Constante |
public static const HIDE_ATTACHMENTS_VIEW:String = "hideAttachmentsView"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | 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 | Constante |
public static const HIDE_AUDIT_VIEW:String = "hideAuditView"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | 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 | Constante |
public static const HIDE_DIRECTIVES_VIEW:String = "hideDirectivesView"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | 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 | Constante |
public static const HIDE_TASK_DETAILS_VIEW:String = "hideTaskDetailsView"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | 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 | Constante |
public static const HIDE_TASK_FORM_VIEW:String = "hideFormView"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | 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 | Constante |
public static const MINIMIZE_SCREEN:String = "minimize"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | 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 | Constante |
public static const SHOW_ATTACHMENTS_VIEW:String = "showAttachmentsView"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | 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 | Constante |
public static const SHOW_AUDIT_VIEW:String = "showAuditView"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | 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 | Constante |
public static const SHOW_DIRECTIVES_VIEW:String = "showDirectivesView"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | 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 | Constante |
public static const SHOW_TASK_DETAILS_VIEW:String = "showTaskDetailsView"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | 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 | Constante |
public static const SHOW_TASK_FORM_VIEW:String = "showFormView"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | 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 | Constante |
public static const UNLOAD:String = "unload"
Taalversie: | ActionScript 3.0 |
Productversie: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
Runtimeversies: | 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. |
Wed Jun 13 2018, 11:42 AM Z