Pacchetto | com.adobe.icc.services.export |
Interfaccia | public interface IExportService extends IEventDispatcher |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Asset Composer 9.5 |
Versioni runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Metodo | Definito da | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un oggetto listener di eventi con un oggetto EventDispatcher, in modo che il listener riceva la notifica di un evento. | IEventDispatcher | ||
Invia un evento nel flusso di eventi. | IEventDispatcher | ||
Exports all assets(published/mark-for-published assets) and data dictionary (non-system)
| IExportService | ||
Export the definition of an asset in a readable XML format. | IExportService | ||
Export the definition of an asset in a 'compressed' readable XML format. | IExportService | ||
Retrieves the asset depedencies in xml format
| IExportService | ||
Exports the list of selected assets. | IExportService | ||
Fetches all the dependent assets of the selected assets from the server . | IExportService | ||
Information about all assets being exported
| IExportService | ||
Verifica se per l'oggetto EventDispatcher sono presenti listener registrati per un tipo specifico di evento. | IEventDispatcher | ||
Imports all the assets from the zip file. | IExportService | ||
importAssetDefinition(assetType:int, bytes:ByteArray, isCompressed:Boolean):com.adobe.icc.token:IAsyncToken
Reads the given XML data bytes (serialized asset bytes) and creates the corresponding asset object. | IExportService | ||
Fetches all the assets to be imported from the (.zip) file . | IExportService | ||
Rimuove un listener dall'oggetto EventDispatcher. | IEventDispatcher | ||
Verifica se un listener di eventi è registrato con questo oggetto EventDispatcher o qualsiasi suo antenato per il tipo di evento specificato. | IEventDispatcher |
exportAllAssets | () | metodo |
public function exportAllAssets():com.adobe.icc.token:IAsyncToken
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Asset Composer 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Exports all assets(published/mark-for-published assets) and data dictionary (non-system)
Restituiscecom.adobe.icc.token:IAsyncToken — Downloadable object having zip File content for all assets
|
exportAssetDefinition | () | metodo |
public function exportAssetDefinition(assetType:int, assetId:String):com.adobe.icc.token:IAsyncToken
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Asset Composer 9.5 |
Versioni runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Export the definition of an asset in a readable XML format.
Parametri
assetType:int — The asset type.
| |
assetId:String — The asset identifier (GUID).
|
com.adobe.icc.token:IAsyncToken — A DataDownload object containing the asset definition data. That is xml as bytes.
|
Genera
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
exportAssetDefinitionCompressed | () | metodo |
public function exportAssetDefinitionCompressed(assetType:int, assetId:String):com.adobe.icc.token:IAsyncToken
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Asset Composer 9.5 |
Versioni runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Export the definition of an asset in a 'compressed' readable XML format.
Parametri
assetType:int — The asset type.
| |
assetId:String — The asset identifier (GUID).
|
com.adobe.icc.token:IAsyncToken — A DataDownload object containing the asset definition data. That is xml as bytes.
|
Genera
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
Elementi API correlati
exportAssetDependencies | () | metodo |
public function exportAssetDependencies(assetType:int, assetId:String):com.adobe.icc.token:IAsyncToken
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Asset Composer 9.5 |
Versioni runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Retrieves the asset depedencies in xml format
Parametri
assetType:int — The asset type.
| |
assetId:String — The asset identifier (GUID).
|
com.adobe.icc.token:IAsyncToken — A DataDownload object containing the asset dependencies. That is xml as bytes.
|
Genera
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
exportPackage | () | metodo |
public function exportPackage(assetIdList:IList, packageName:String):com.adobe.icc.token:IAsyncToken
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Asset Composer 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Exports the list of selected assets.
Parametri
assetIdList:IList — The IList type.
| |
packageName:String — The String type.
|
com.adobe.icc.token:IAsyncToken — The list of selected assets to be exported.
|
Genera
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
fetchPackageDependencies | () | metodo |
public function fetchPackageDependencies(assetIdList:IList):com.adobe.icc.token:IAsyncToken
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Asset Composer 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Fetches all the dependent assets of the selected assets from the server .
Parametri
assetIdList:IList — The IList type.
|
com.adobe.icc.token:IAsyncToken — all the dependent assets of the selected assets from the server
|
Genera
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
getAllExportedAssetsInfo | () | metodo |
public function getAllExportedAssetsInfo():com.adobe.icc.token:IAsyncToken
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Asset Composer 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Information about all assets being exported
Restituiscecom.adobe.icc.token:IAsyncToken — List of Assets and Data Dictinary to be exported.
List may contains (TextModule, ListDataModule, ConditionalDataModule,
ImageModule, Form, FragmentLayout, Letter) and data dictionary (DataDictionary)
|
Genera
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
importAsset | () | metodo |
public function importAsset(dataDownload:DataDownload):com.adobe.icc.token:IAsyncToken
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Asset Composer 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Imports all the assets from the zip file.
Parametri
dataDownload:DataDownload — Downloadable object having zip file content
|
com.adobe.icc.token:IAsyncToken —
|
Genera
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
importAssetDefinition | () | metodo |
public function importAssetDefinition(assetType:int, bytes:ByteArray, isCompressed:Boolean):com.adobe.icc.token:IAsyncToken
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Asset Composer 9.5 |
Versioni runtime: | AIR (unsupported), Flash Player 9, Flash Player 10 |
Reads the given XML data bytes (serialized asset bytes) and creates the corresponding asset object.
Parametri
assetType:int — The asset type.
| |
bytes:ByteArray — The asset definition bytes, that may have been generated using exportAssetDefinition .
| |
isCompressed:Boolean — True, if the bytes are compressed. False otherwise.
|
com.adobe.icc.token:IAsyncToken — A DataDownload object containing the letter definition data. That is xml as bytes.
|
Genera
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
importPackage | () | metodo |
public function importPackage(dataDownload:DataDownload):com.adobe.icc.token:IAsyncToken
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | Blocco costitutivo Asset Composer 10 |
Versioni runtime: | AIR (unsupported), Flash Player 10.2 |
Fetches all the assets to be imported from the (.zip) file .
Parametri
dataDownload:DataDownload — Downloadable object having zip file content
|
com.adobe.icc.token:IAsyncToken — list of assetID being imported.
|
Genera
Error — Throws ICCException with the appropriate error message and error code, if there was an error processing the request on the server.
|
Tue Jun 12 2018, 02:44 PM Z