包 | lc.procmgmt.events |
类 | public class SwfAppEvent |
继承 | SwfAppEvent Event Object |
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | AIR (unsupported), Flash Player 9, Flash Player 10 |
SwfAppEvent
event is used to communicate between an application built with Flex
(Flex application and Workspace).
方法 | 由以下参数定义 | ||
---|---|---|---|
SwfAppEvent(type:String)
Constructor. | SwfAppEvent | ||
复制 Event 子类的实例。 | Event | ||
用于在自定义 ActionScript 3.0 Event 类中实现 toString() 方法的实用程序函数。 | Event | ||
表示对象是否已经定义了指定的属性。 | Object | ||
检查是否已对事件调用 preventDefault() 方法。 | Event | ||
表示 Object 类的实例是否在指定为参数的对象的原型链中。 | Object | ||
如果可以取消事件的默认行为,则取消该行为。 | Event | ||
表示指定的属性是否存在、是否可枚举。 | Object | ||
设置循环操作动态属性的可用性。 | Object | ||
防止对事件流中当前节点中和所有后续节点中的事件侦听器进行处理。 | Event | ||
防止对事件流中当前节点的后续节点中的所有事件侦听器进行处理。 | Event | ||
返回此对象的字符串表示形式,其格式设置遵守区域设置特定的约定。 | Object | ||
返回一个字符串,其中包含 Event 对象的所有属性。 | Event | ||
返回指定对象的原始值。 | Object |
常量 | 由以下参数定义 | ||
---|---|---|---|
CLOSE : String = "close" [静态]
A special value that specifies to close the Flex application. | SwfAppEvent | ||
FULL_SCREEN : String = "maximize" [静态]
A special value that specifies to display the Flex application in full screen mode. | SwfAppEvent | ||
HIDE_ALL_CONTAINER_VIEWS : String = "hideAllContainerViews" [静态]
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" [静态]
A special value that specifies to the Flex application to hide the Task Attachments view. | SwfAppEvent | ||
HIDE_AUDIT_VIEW : String = "hideAuditView" [静态]
A special value that specifies to the Flex application to hide the Task Audit view. | SwfAppEvent | ||
HIDE_DIRECTIVES_VIEW : String = "hideDirectivesView" [静态]
A special value that specifies to the Flex application to hide the Task Directives view. | SwfAppEvent | ||
HIDE_TASK_DETAILS_VIEW : String = "hideTaskDetailsView" [静态]
A special value that specifies to the Flex application to hide the Task Details view. | SwfAppEvent | ||
HIDE_TASK_FORM_VIEW : String = "hideFormView" [静态]
A special value that specifies to the Flex application to hide the Task Form view. | SwfAppEvent | ||
MINIMIZE_SCREEN : String = "minimize" [静态]
A special value that specifies to display the Flex application in normal screen mode, instead of fullscreen mode. | SwfAppEvent | ||
SHOW_ATTACHMENTS_VIEW : String = "showAttachmentsView" [静态]
A special value that specifies to the Flex application to display the Task Attachments view. | SwfAppEvent | ||
SHOW_AUDIT_VIEW : String = "showAuditView" [静态]
A special value that specifies to the Flex application to display the Task Audit view. | SwfAppEvent | ||
SHOW_DIRECTIVES_VIEW : String = "showDirectivesView" [静态]
A special value that specifies to the Flex application to display the Task Directives view. | SwfAppEvent | ||
SHOW_TASK_DETAILS_VIEW : String = "showTaskDetailsView" [静态]
A special value that specifies to the Flex applicatin to display the Task Details view. | SwfAppEvent | ||
SHOW_TASK_FORM_VIEW : String = "showFormView" [静态]
A special value that specifies to the Flex application to display Task Form view. | SwfAppEvent | ||
UNLOAD : String = "unload" [静态]
A special value that specifies to unload the Flex application. | SwfAppEvent |
SwfAppEvent | () | 构造函数 |
public function SwfAppEvent(type:String)
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Constructor.
参数type:String — Specifies the type of event to create. You can use an event type defined
in this class, such as hideTaskDetailsView.
|
CLOSE | 常量 |
public static const CLOSE:String = "close"
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | 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 | 常量 |
public static const FULL_SCREEN:String = "maximize"
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | 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 | 常量 |
public static const HIDE_ALL_CONTAINER_VIEWS:String = "hideAllContainerViews"
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | 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 | 常量 |
public static const HIDE_ATTACHMENTS_VIEW:String = "hideAttachmentsView"
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | 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 | 常量 |
public static const HIDE_AUDIT_VIEW:String = "hideAuditView"
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | 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 | 常量 |
public static const HIDE_DIRECTIVES_VIEW:String = "hideDirectivesView"
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | 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 | 常量 |
public static const HIDE_TASK_DETAILS_VIEW:String = "hideTaskDetailsView"
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | 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 | 常量 |
public static const HIDE_TASK_FORM_VIEW:String = "hideFormView"
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | 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 | 常量 |
public static const MINIMIZE_SCREEN:String = "minimize"
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | 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 | 常量 |
public static const SHOW_ATTACHMENTS_VIEW:String = "showAttachmentsView"
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | 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 | 常量 |
public static const SHOW_AUDIT_VIEW:String = "showAuditView"
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | 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 | 常量 |
public static const SHOW_DIRECTIVES_VIEW:String = "showDirectivesView"
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | 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 | 常量 |
public static const SHOW_TASK_DETAILS_VIEW:String = "showTaskDetailsView"
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | 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 | 常量 |
public static const SHOW_TASK_FORM_VIEW:String = "showFormView"
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | 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 | 常量 |
public static const UNLOAD:String = "unload"
语言版本: | ActionScript 3.0 |
产品版本: | Adobe Digital Enterprise Platform Document Services - Workspace 9 |
运行时版本: | 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, 11:04 AM Z