Pacote | com.adobe.ep.ux.content.event |
Classe | public class AssetActionEvent |
Herança | AssetActionEvent FlexEvent Event Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
Propriedade | Definido por | ||
---|---|---|---|
actionItems : Array [somente leitura]
Selected Itmes on which action is taken
| AssetActionEvent | ||
actionName : String [somente leitura]
Name of the action
| AssetActionEvent | ||
assetType : String [somente leitura]
Type of asset on which action is taken
| AssetActionEvent | ||
bubbles : Boolean [somente leitura]
Indica se um evento é do tipo bubbling. | Event | ||
cancelable : Boolean [somente leitura]
Indica se o comportamento associado ao evento pode ser impedido. | Event | ||
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
creationDate : Date [somente leitura]
Date of the asset on which action should be taken. | AssetActionEvent | ||
currentTarget : Object [somente leitura]
O objeto que está processando ativamente o objeto Event com um ouvinte de evento. | Event | ||
eventPhase : uint [somente leitura]
A fase atual no fluxo de eventos. | Event | ||
target : Object [somente leitura]
O destino de evento. | Event | ||
type : String [somente leitura]
O tipo de evento. | Event |
Método | Definido por | ||
---|---|---|---|
AssetActionEvent(actionName:String, actionItems:Array, vAssetType:String, type:String, creationDate:Date = null)
Constructor
| AssetActionEvent | ||
Duplica uma ocorrência de uma subclasse Event. | Event | ||
Uma função de utilitário para implementar o método toString() em classes ActionScript 3.0 Event personalizadas. | Event | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Verifica se o método preventDefault() foi chamado no evento. | Event | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Cancela um comportamento padrão de evento se esse comportamento puder ser cancelado. | Event | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Impede o processamento de qualquer ouvinte de evento no nó atual e qualquer nó subsequente no fluxo de eventos. | Event | ||
Impede o processamento de algum ouvinte de evento em nós subsequentes ao nó atual no fluxo de eventos. | Event | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna uma string que contém todas as propriedades do objeto Event. | Event | ||
Retorna o valor primitivo do objeto especificado. | Object |
Constante | Definido por | ||
---|---|---|---|
ACTION_DEFAULT : String = "defaultAction" [estático]
This constant specifies the default action to be taken on the asset
| AssetActionEvent | ||
ACTION_DEFAULT_VERSION_SPECIFIC : String = "defaultActionVersionSpecific" [estático]
This constant specifies the default action to be taken in the version browser for that asset
| AssetActionEvent | ||
ACTION_DEPENDENCY_BROWSER : String = "ViewDependency" [estático]
Dependency/Relationship action name. | AssetActionEvent | ||
ACTION_DEPENDENCY_BROWSER_REPORT : String = "actionDependencyBrowserReport" [estático]
This constant specifies that report action on Dependency Browser needs to be performed. | AssetActionEvent | ||
ACTION_PUBLISH : String = "Publish" [estático]
Publish action name. | AssetActionEvent | ||
ACTION_PUBLISH_BROWSER_PUBLISH : String = "actionPublishBrowserPublish" [estático]
This constant specifies that the publish action on Publish Browser needs to be performed. | AssetActionEvent | ||
ACTION_PUBLISH_BROWSER_REPORT : String = "actionPublishBrowserReport" [estático]
This constant specifies that report action on Publish Browser needs to be performed. | AssetActionEvent | ||
ACTION_VERSION_HISTORY : String = "VersionHistory" [estático]
Version History action name. | AssetActionEvent | ||
EVENT_ASSET_ACTION_CLICK : String = "assetActionClick" [estático]
This constant specifies that an Asset has been clicked
| AssetActionEvent | ||
EVENT_ASSET_ACTIONS_CHANGE : String = "assetActionsChanged" [estático]
This constant specifies that an actions associated with an asset has changed
| AssetActionEvent | ||
EVENT_CLOSE_RELATIONSHIP_BROWSER : String = "closeRelationshipBrowser" [estático]
This constant specifies an action to close the relationship browser
| AssetActionEvent | ||
EVENT_LAUNCH_EDITOR_WINDOW : String = "launchEditor" [estático]
This constant specifies an action to launch the editor
| AssetActionEvent | ||
EVENT_OPEN_ACTIVATION_BROWSER : String = "openActivationBrowser" [estático]
This constant specifies an action to open the activation browser
| AssetActionEvent | ||
EVENT_OPEN_COMPOSER_BROWSER : String = "openComposerBrowser" [estático]
This constant specifies an action to open the composer browser
| AssetActionEvent | ||
EVENT_OPEN_RELATIONSHIP_BROWSER : String = "openRelationshipBrowser" [estático]
This constant specifies an action to open the relationship browser
| AssetActionEvent |
actionItems | propriedade |
actionItems:Array
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
Selected Itmes on which action is taken
Implementação
public function get actionItems():Array
actionName | propriedade |
assetType | propriedade |
assetType:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
Type of asset on which action is taken
Implementação
public function get assetType():String
creationDate | propriedade |
creationDate:Date
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
Date of the asset on which action should be taken. Used only in case of Version History Browser.
Implementação
public function get creationDate():Date
AssetActionEvent | () | Construtor |
public function AssetActionEvent(actionName:String, actionItems:Array, vAssetType:String, type:String, creationDate:Date = null)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
Constructor
ParâmetrosactionName:String — Name of the action
| |
actionItems:Array — Selected Itmes on which action is taken
| |
vAssetType:String — Type of asset on which action is taken
| |
type:String (default = NaN ) — Type of Event. Defaults to EVENT_ASSET_ACTION_CLICK
| |
creationDate:Date (default = null ) — Version of asset on which action should be taken. Mostly null. Useful only in case of Version Pod History.
|
ACTION_DEFAULT | Constante |
public static const ACTION_DEFAULT:String = "defaultAction"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
This constant specifies the default action to be taken on the asset
ACTION_DEFAULT_VERSION_SPECIFIC | Constante |
public static const ACTION_DEFAULT_VERSION_SPECIFIC:String = "defaultActionVersionSpecific"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
This constant specifies the default action to be taken in the version browser for that asset
ACTION_DEPENDENCY_BROWSER | Constante |
public static const ACTION_DEPENDENCY_BROWSER:String = "ViewDependency"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
Dependency/Relationship action name. If you need an action to work as dependency action give it this name.
ACTION_DEPENDENCY_BROWSER_REPORT | Constante |
public static const ACTION_DEPENDENCY_BROWSER_REPORT:String = "actionDependencyBrowserReport"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
This constant specifies that report action on Dependency Browser needs to be performed.
ACTION_PUBLISH | Constante |
public static const ACTION_PUBLISH:String = "Publish"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
Publish action name. If you need an action to work as publish action give it this name.
ACTION_PUBLISH_BROWSER_PUBLISH | Constante |
public static const ACTION_PUBLISH_BROWSER_PUBLISH:String = "actionPublishBrowserPublish"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
This constant specifies that the publish action on Publish Browser needs to be performed.
ACTION_PUBLISH_BROWSER_REPORT | Constante |
public static const ACTION_PUBLISH_BROWSER_REPORT:String = "actionPublishBrowserReport"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
This constant specifies that report action on Publish Browser needs to be performed.
ACTION_VERSION_HISTORY | Constante |
public static const ACTION_VERSION_HISTORY:String = "VersionHistory"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
Version History action name. If you need an action to work as version history action give it this name.
EVENT_ASSET_ACTION_CLICK | Constante |
public static const EVENT_ASSET_ACTION_CLICK:String = "assetActionClick"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
This constant specifies that an Asset has been clicked
EVENT_ASSET_ACTIONS_CHANGE | Constante |
public static const EVENT_ASSET_ACTIONS_CHANGE:String = "assetActionsChanged"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
This constant specifies that an actions associated with an asset has changed
EVENT_CLOSE_RELATIONSHIP_BROWSER | Constante |
public static const EVENT_CLOSE_RELATIONSHIP_BROWSER:String = "closeRelationshipBrowser"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
This constant specifies an action to close the relationship browser
EVENT_LAUNCH_EDITOR_WINDOW | Constante |
public static const EVENT_LAUNCH_EDITOR_WINDOW:String = "launchEditor"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
This constant specifies an action to launch the editor
EVENT_OPEN_ACTIVATION_BROWSER | Constante |
public static const EVENT_OPEN_ACTIVATION_BROWSER:String = "openActivationBrowser"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
This constant specifies an action to open the activation browser
EVENT_OPEN_COMPOSER_BROWSER | Constante |
public static const EVENT_OPEN_COMPOSER_BROWSER:String = "openComposerBrowser"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
This constant specifies an action to open the composer browser
EVENT_OPEN_RELATIONSHIP_BROWSER | Constante |
public static const EVENT_OPEN_RELATIONSHIP_BROWSER:String = "openRelationshipBrowser"
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Content 10 |
Versões de runtime: | Flash Player 10.2, AIR (unsupported) |
This constant specifies an action to open the relationship browser
Wed Jun 13 2018, 11:10 AM Z