Pakket | com.adobe.icc.editors.handlers |
Klasse | public class BaseAssetHandler |
Overerving | BaseAssetHandler EventDispatcher Object |
Implementatie | IAssetHandler |
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
assetActions : IList
The list of AssetAction objects maintained by this handler. | BaseAssetHandler | ||
assetType : String
The type of asset being handled by this handler. | BaseAssetHandler | ||
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
selectedAssets : Array
The array of text value objects currently selected by the user. | BaseAssetHandler |
Methode | Gedefinieerd door | ||
---|---|---|---|
BaseAssetHandler(assetType:String)
Constructor. | BaseAssetHandler | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registreert een gebeurtenislistenerobject bij een object EventDispatcher, zodat de listener een melding van een gebeurtenis ontvangt. | EventDispatcher | ||
Verzendt een gebeurtenis naar de gebeurtenisstroom. | EventDispatcher | ||
Returns the asset type handled by this handler. | BaseAssetHandler | ||
This method is invoked by the asset manager framework whenever user requests an action
on an object of type dataModule and then it delegates call to its respective handler. | BaseAssetHandler | ||
Controleert of het object EventDispatcher listeners heeft geregistreerd voor een specifiek type gebeurtenis. | EventDispatcher | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Called by the asset manager framework giving the handlers a chance to initialize themselves. | BaseAssetHandler | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Verwijdert een listener uit het object EventDispatcher. | EventDispatcher | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
Retourneert een tekenreeksrepresentatie van het opgegeven object. | Object | ||
Retourneert de primitieve waarde van het opgegeven object. | Object | ||
Controleert of een gebeurtenislistener is geregistreerd bij dit object EventDispatcher of een van de voorouders voor het opgegeven type gebeurtenis. | EventDispatcher |
Methode | Gedefinieerd door | ||
---|---|---|---|
Dispatch Asset Action Event thrown by the export manager so that i could be listened
in the Amapplication.as
| BaseAssetHandler | ||
Called internally when this handler is handling an action of type ExportPackage. | BaseAssetHandler | ||
Called internally when this handler is handling an action of type ImportPackage. | BaseAssetHandler |
Gebeurtenis | Overzicht | Gedefinieerd door | ||
---|---|---|---|---|
[uitgezonden gebeurtenis] Wordt verzonden wanneer Flash Player of de AIR-toepassing de besturingssysteemfocus krijgt en actief wordt. | EventDispatcher | |||
Dispatched when the handling of an action is complete. | BaseAssetHandler | |||
assetActionsChanged event is thrown by the Handler when the selected item in results viewer change and it updates the correct handler selected assets. | BaseAssetHandler | |||
[uitgezonden gebeurtenis] Wordt verzonden wanneer Flash Player of de AIR-toepassing de systeemfocus verliest en inactief wordt. | EventDispatcher | |||
Dispatched when an action handled by this handler requires an editor window to be launched. | BaseAssetHandler |
Constante | Gedefinieerd door | ||
---|---|---|---|
ACTION_EXPORTPACKAGE : String = "ExportPackage" [statisch]
Constant for the name of the action related to exporting dependencies of an asset. | BaseAssetHandler | ||
ACTION_IMPORTPACKAGE : String = "ImportPackage" [statisch]
Constant for the name of the action related to importing dependencies of an asset. | BaseAssetHandler | ||
ASSET_TYPE : String = "Asset" [statisch]
Constant for the Asset Type handled by this handler. | BaseAssetHandler | ||
DATA_ASSET_TYPE : String = "DataModule" [statisch]
Constant for the Data Module handled by this handler
| BaseAssetHandler |
assetActions | eigenschap |
assetActions:IList
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10.0 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
The list of AssetAction objects maintained by this handler. This list is used by the asset manager framework to determine which action to enable. The asset manager framework looks for the value of the enabled flag in the AssetAction object to determine the same and handler updates the flags everytime the list of selected assets changes.
Deze eigenschap kan als de bron voor gegevensbinding worden gebruikt. Wanneer deze eigenschap wordt gewijzigd, wordt de gebeurtenis propertyChange
verzonden.
Implementatie
public function get assetActions():IList
public function set assetActions(value:IList):void
assetType | eigenschap |
public var assetType:String
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10.0 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
The type of asset being handled by this handler.
selectedAssets | eigenschap |
selectedAssets:Array
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10.0 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
The array of text value objects currently selected by the user. This is set by the asset manager framework everytime a user selects or deselects an item of type text.
Deze eigenschap kan als de bron voor gegevensbinding worden gebruikt. Wanneer deze eigenschap wordt gewijzigd, wordt de gebeurtenis propertyChange
verzonden.
Implementatie
public function get selectedAssets():Array
public function set selectedAssets(value:Array):void
BaseAssetHandler | () | Constructor |
getAssetType | () | methode |
public function getAssetType():String
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10.0 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Returns the asset type handled by this handler. This is used by the asset manager framework to route actions to appropriate handlers.
Geretourneerde waardeString — the asset type handled by this handler
|
handleAction | () | methode |
public function handleAction(event:AssetActionEvent):void
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10.0 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
This method is invoked by the asset manager framework whenever user requests an action on an object of type dataModule and then it delegates call to its respective handler. This method is called for all the actions requested by the user. The action handling is internally routed to the correcting templatized methods like createImage(), editImage() etc.
Parameters
event:AssetActionEvent — The event object of type AssetActionEvent that is raised by the asset manager framework
|
handleImportManagerPopUp | () | methode |
protected function handleImportManagerPopUp(event:AssetActionEvent):void
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10.0 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Dispatch Asset Action Event thrown by the export manager so that i could be listened in the Amapplication.as
Parameters
event:AssetActionEvent — AssetActionEvent containing information about the import action
|
initialize | () | methode |
public function initialize():void
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10.0 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Called by the asset manager framework giving the handlers a chance to initialize themselves.
launchExportPopUp | () | methode |
protected function launchExportPopUp():void
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10.0 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Called internally when this handler is handling an action of type ExportPackage. This method launches the export Pop up to display all the assets to be exported .
launchImportPopUp | () | methode |
protected function launchImportPopUp():void
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10.0 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Called internally when this handler is handling an action of type ImportPackage. This method launches the import Pop up to display all the assets to be imported .
assetActionComplete | Gebeurtenis |
com.adobe.livecycle.assetmanager.client.event.AssetActionCompleteEvent
eigenschap AssetActionCompleteEvent.type =
com.adobe.livecycle.assetmanager.client.event.AssetActionCompleteEvent
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the handling of an action is complete. This can be used by the framework or the application to perform any additional activities e.g. display of a toast, alert box etc.
assetActionsChanged | Gebeurtenis |
com.adobe.livecycle.assetmanager.client.event.AssetActionsChangeEvent
eigenschap AssetActionsChangeEvent.type =
com.adobe.livecycle.assetmanager.client.event.AssetActionsChangeEvent
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
assetActionsChanged event is thrown by the Handler when the selected item in results viewer change and it updates the correct handler selected assets. It is redispatched by the AssetHandlerRegistry and finally handled by AssetManagerView
launchEditor | Gebeurtenis |
com.adobe.livecycle.assetmanager.client.event.AssetActionEvent
eigenschap AssetActionEvent.type =
com.adobe.livecycle.assetmanager.client.event.AssetActionEvent
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Dispatched when an action handled by this handler requires an editor window to be launched. Create/View/Edit/Copy are the actions that require displaying the editor window to the user.
ACTION_EXPORTPACKAGE | Constante |
public static const ACTION_EXPORTPACKAGE:String = "ExportPackage"
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10.0 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Constant for the name of the action related to exporting dependencies of an asset.
ACTION_IMPORTPACKAGE | Constante |
public static const ACTION_IMPORTPACKAGE:String = "ImportPackage"
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10.0 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Constant for the name of the action related to importing dependencies of an asset.
ASSET_TYPE | Constante |
public static const ASSET_TYPE:String = "Asset"
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10.0 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Constant for the Asset Type handled by this handler.
DATA_ASSET_TYPE | Constante |
public static const DATA_ASSET_TYPE:String = "DataModule"
Taalversie: | ActionScript 3.0 |
Productversie: | Asset Composer Building Block 10.0 |
Runtimeversies: | AIR (unsupported), Flash Player 10.2 |
Constant for the Data Module handled by this handler
Wed Jun 13 2018, 11:42 AM Z