Pacote | com.adobe.icc.editors.managers |
Classe | public class EditorConfigurationManager |
Herança | EditorConfigurationManager EventDispatcher Object |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
EditorConfigurationManager
is the one-stop singleton for
loading all kinds of configurations required for the CM Application to
run correctly.
Propriedade | Definido por | ||
---|---|---|---|
configProvider : XMLConfigProvider
The TBX config provider. | EditorConfigurationManager | ||
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
flexConfiguration : FlexConfiguration
The Flex configuration provider
| EditorConfigurationManager | ||
postProcesses : IList
The List of Post Processes
| EditorConfigurationManager |
Método | Definido por | ||
---|---|---|---|
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra um objeto de ouvinte de evento em um objeto EventDispatcher, de forma que o ouvinte receba a notificação de um evento. | EventDispatcher | ||
Envia um evento para o fluxo de eventos. | EventDispatcher | ||
[estático]
Gets the single instance of the EditorConfigurationManager class. | EditorConfigurationManager | ||
Verifica se o objeto EventDispatcher tem ouvintes registrados para um tipo específico de evento. | EventDispatcher | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Loads the flex configuration from the server. | EditorConfigurationManager | ||
Loads list of processes for the Letter from the server. | EditorConfigurationManager | ||
Loads the xml configuration required by the Text Editor. | EditorConfigurationManager | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Remove um ouvinte do objeto EventDispatcher. | EventDispatcher | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
Retorna a representação de string do objeto especificado. | Object | ||
Retorna o valor primitivo do objeto especificado. | Object | ||
Verifica se um ouvinte de evento está registrado nesse objeto EventDispatcher ou em qualquer um de seus ancestrais para o tipo de evento especificado. | EventDispatcher |
Evento | Resumo | Definido por | ||
---|---|---|---|---|
[transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR ganha o foco do sistema operacional e está se tornando inativo. | EventDispatcher | |||
Dispatched when the Text Editor's configuration is successfully loaded from the server. | EditorConfigurationManager | |||
[transmissão de evento] Despachado quando o Flash Player ou o aplicativo do AIR perde o foco do sistema operacional e está se tornando inativo. | EventDispatcher | |||
Dispatched when the FlexConfiguration is successfully loaded from the server. | EditorConfigurationManager | |||
Dispatched when the Post Processes List is loaded from the server. | EditorConfigurationManager |
configProvider | propriedade |
configProvider:XMLConfigProvider
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
The TBX config provider.
Essa propriedade pode ser usada como a origem para o vínculo de dados. Quando essa propriedade é modificada, ela despacha o evento configFetched
.
Implementação
public function get configProvider():XMLConfigProvider
public function set configProvider(value:XMLConfigProvider):void
flexConfiguration | propriedade |
flexConfiguration:FlexConfiguration
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
The Flex configuration provider
Essa propriedade pode ser usada como a origem para o vínculo de dados. Quando essa propriedade é modificada, ela despacha o evento flexConfigurationFetched
.
Implementação
public function get flexConfiguration():FlexConfiguration
public function set flexConfiguration(value:FlexConfiguration):void
postProcesses | propriedade |
postProcesses:IList
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
The List of Post Processes
Essa propriedade pode ser usada como a origem para o vínculo de dados. Quando essa propriedade é modificada, ela despacha o evento postProcessesFetched
.
Implementação
public function get postProcesses():IList
public function set postProcesses(value:IList):void
getInstance | () | método |
public static function getInstance(loadPostProcess:Boolean = true):EditorConfigurationManager
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Gets the single instance of the EditorConfigurationManager class. This object helps you load various configuration required by the CM application.
Parâmetros
loadPostProcess:Boolean (default = true ) — The boolean value specifying if any post process is loaded.
|
EditorConfigurationManager — An object of type EditorConfigurationManager.
|
loadFlexConfiguration | () | método |
public function loadFlexConfiguration(reload:Boolean = false):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Loads the flex configuration from the server.
Parâmetros
reload:Boolean (default = false ) — The boolean value specifying if the letter is being reloaded or not.
|
loadPostProcesses | () | método |
public function loadPostProcesses(reload:Boolean = false):void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Loads list of processes for the Letter from the server.
Parâmetros
reload:Boolean (default = false ) — The flag indicating whether to reload the post processes from the server.
|
loadTBXConfiguration | () | método |
public function loadTBXConfiguration():void
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Loads the xml configuration required by the Text Editor.
configFetched | Evento |
flash.events.Event
propriedade Event.type =
flash.events.Event
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the Text Editor's configuration is successfully
loaded from the server.
The load request can be made by invoking the loadTBXConfiguration()
method of this class. This event is dispatched when the asynchronous server
call completes.
flexConfigurationFetched | Evento |
flash.events.Event
propriedade Event.type =
flash.events.Event
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the FlexConfiguration
is successfully
loaded from the server.
The load request can be made by invoking the loadFlexConfiguration()
method of this class. This event is dispatched when the asynchronous server
call completes.
postProcessesFetched | Evento |
flash.events.Event
propriedade Event.type =
flash.events.Event
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Asset Composer Building Block 10 |
Versões de runtime: | AIR (unsupported), Flash Player 10.2 |
Dispatched when the Post Processes List is
loaded from the server.
The load request can be made by invoking the loadPostProcesses()
method of this class. This event is dispatched when the asynchronous server
call completes.
Wed Jun 13 2018, 11:10 AM Z