Referencia de ActionScript® 3.0 para la plataforma de Adobe® Flash®
Inicio  |  Ocultar lista de paquetes y clases |  Paquetes  |  Clases  |  Novedades  |  Índice  |  Apéndices  |  ¿Por qué hay texto en inglés?
Filtros: Recuperando datos del servidor...
Recuperando datos del servidor...
com.adobe.livecycle.assetmanager.client.handler 

AssetHandlerRegistry  - AS3 Asset Manager

Paquetecom.adobe.livecycle.assetmanager.client.handler
Clasepublic class AssetHandlerRegistry
HerenciaAssetHandlerRegistry Inheritance EventDispatcher Inheritance Object
Desfasado: Deprecated

Versión del lenguaje: ActionScript 3.0
Versión de producto: Bloque de construcción Asset Manager 9.5
Versiones de motor de ejecución: AIR 1.0, Flash Player 9, Flash Player 10

The central registry for all the available handlers in the system. A client application registers its handler here against an assetType, which is called when the user clicks an asset.



Propiedades públicas
 PropiedadDefinido por
 Inheritedconstructor : Object
Una referencia a la clase de objeto o función constructora para una instancia de objeto determinada.
Object
Métodos públicos
 MétodoDefinido por
  
Constructor.
AssetHandlerRegistry
 Inherited
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
Registra un objeto de detector de eventos con un objeto EventDispatcher, de modo que el detector reciba la notificación de un evento.
EventDispatcher
 Inherited
Distribuye un evento en el flujo del evento.
EventDispatcher
  
[estática] A singleton that retrieves an AssetHandlerRegistry event.
AssetHandlerRegistry
 Inherited
Comprueba si el objeto EventDispatcher tiene detectores registrados para un tipo concreto de evento.
EventDispatcher
 Inherited
Indica si un objeto tiene definida una propiedad especificada.
Object
 Inherited
Indica si hay una instancia de la clase Object en la cadena de prototipo del objeto especificado como parámetro.
Object
  
Checks whether a handler is registered for a specified assetType.
AssetHandlerRegistry
  
Returns the assetHandler that corresponds to the specified assetType.
AssetHandlerRegistry
 Inherited
Indica si existe la propiedad especificada y si es enumerable.
Object
  
A singleton registry that is used to register an asset handler.
AssetHandlerRegistry
 Inherited
removeEventListener(type:String, listener:Function, useCapture:Boolean = false):void
Elimina un detector del objeto EventDispatcher.
EventDispatcher
 Inherited
Establece la disponibilidad de una propiedad dinámica para operaciones de bucle.
Object
  
Starts the registry that calls the initialize function of individual handlers.
AssetHandlerRegistry
 Inherited
Devuelve la representación de cadena de este objeto, con formato según las convenciones específicas de configuración regional.
Object
 Inherited
Devuelve la representación de cadena del objeto especificado.
Object
 Inherited
Devuelve el valor simple del objeto especificado.
Object
 Inherited
Comprueba si hay registrado un detector de eventos con este objeto EventDispatcher o con cualquiera de sus ascendientes para el tipo de evento concreto.
EventDispatcher
Eventos
 Evento Resumen Definido por
 Inherited[evento broadcast] Se distribuye cuando Flash Player o AIR pasan a estar activos.EventDispatcher
  An event that is thrown when AssetHandler has completed the assetAction initiated by the user via the user interface.AssetHandlerRegistry
 Inherited[evento broadcast] Se distribuye cuando Flash Player o de AIR pasan a estar inactivos.EventDispatcher
  An event that is thrown when the handler is processing and wants the application to disable user interaction.AssetHandlerRegistry
  An event thrown when the handler is done processing and wants the application to reenable user interaction.AssetHandlerRegistry
  The launchEditor event is thrown by the handler when the handler has prepared the working asset to be displayed in the corresponding editor.AssetHandlerRegistry
Constantes públicas
 ConstanteDefinido por
  DISABLE_USER_INTERACTION_EVENT : String = "disableUserInteraction"
[estática] Defines a constant for an event type that disables user interaction with the application.
AssetHandlerRegistry
  ENABLE_USER_INTERACTION_EVENT : String = "enableUserInteraction"
[estática] Defines a constant for an event type that enables users to interact with the application.
AssetHandlerRegistry
Información sobre constructores

AssetHandlerRegistry

()Información sobre
public function AssetHandlerRegistry()

Versión del lenguaje: ActionScript 3.0
Versión de producto: Bloque de construcción Asset Manager 9.5
Versiones de motor de ejecución: AIR 1.0, Flash Player 9, Flash Player 10

Constructor.

Información sobre métodos

getInstance

()método
public static function getInstance():AssetHandlerRegistry

Versión del lenguaje: ActionScript 3.0
Versión de producto: Bloque de construcción Asset Manager 9.5
Versiones de motor de ejecución: AIR 1.0, Flash Player 9, Flash Player 10

A singleton that retrieves an AssetHandlerRegistry event.

Valor devuelto
AssetHandlerRegistry

isRegistered

()método 
public function isRegistered(assetType:String):Boolean

Versión del lenguaje: ActionScript 3.0
Versión de producto: Bloque de construcción Asset Manager 9.5
Versiones de motor de ejecución: AIR 1.0, Flash Player 9, Flash Player 10

Checks whether a handler is registered for a specified assetType.

Parámetros

assetType:String — The asset to check.

Valor devuelto
Boolean — Specifies whether the handler is registered. If the value is true, it is registered.

lookup

()método 
public function lookup(assetType:String):IAssetHandler

Versión del lenguaje: ActionScript 3.0
Versión de producto: Bloque de construcción Asset Manager 9.5
Versiones de motor de ejecución: AIR 1.0, Flash Player 9, Flash Player 10

Returns the assetHandler that corresponds to the specified assetType.

Parámetros

assetType:String — The asset type for which the assetHandler is required.

Valor devuelto
IAssetHandler — An interface implemented by all asset handlers.

register

()método 
public function register(handler:IAssetHandler):void

Versión del lenguaje: ActionScript 3.0
Versión de producto: Bloque de construcción Asset Manager 9.5
Versiones de motor de ejecución: AIR 1.0, Flash Player 9, Flash Player 10

A singleton registry that is used to register an asset handler.

Parámetros

handler:IAssetHandler — The handler to register.

start

()método 
public function start():void

Versión del lenguaje: ActionScript 3.0
Versión de producto: Bloque de construcción Asset Manager 9.5
Versiones de motor de ejecución: AIR 1.0, Flash Player 9, Flash Player 10

Starts the registry that calls the initialize function of individual handlers.

Información sobre eventos

assetActionComplete

Evento
Tipo de objeto de evento: com.adobe.livecycle.assetmanager.client.event.AssetActionCompleteEvent

Versión del lenguaje: ActionScript 3.0
Versión de producto: Bloque de construcción Asset Manager 9.5
Versiones de motor de ejecución: AIR 1.0, Flash Player 9, Flash Player 10

An event that is thrown when AssetHandler has completed the assetAction initiated by the user via the user interface.

disableUserInteraction

Evento  
Tipo de objeto de evento: mx.events.FlexEvent

Versión del lenguaje: ActionScript 3.0
Versión de producto: Bloque de construcción Asset Manager 9.5
Versiones de motor de ejecución: AIR 1.0, Flash Player 9, Flash Player 10

An event that is thrown when the handler is processing and wants the application to disable user interaction.

enableUserInteraction

Evento  
Tipo de objeto de evento: mx.events.FlexEvent

Versión del lenguaje: ActionScript 3.0
Versión de producto: Bloque de construcción Asset Manager 9.5
Versiones de motor de ejecución: AIR 1.0, Flash Player 9, Flash Player 10

An event thrown when the handler is done processing and wants the application to reenable user interaction.

launchEditor

Evento  
Tipo de objeto de evento: mx.events.FlexEvent

Versión del lenguaje: ActionScript 3.0
Versión de producto: Bloque de construcción Asset Manager 9.5
Versiones de motor de ejecución: AIR 1.0, Flash Player 9, Flash Player 10

The launchEditor event is thrown by the handler when the handler has prepared the working asset to be displayed in the corresponding editor.

Información sobre constantes

DISABLE_USER_INTERACTION_EVENT

Constante
public static const DISABLE_USER_INTERACTION_EVENT:String = "disableUserInteraction"

Versión del lenguaje: ActionScript 3.0
Versión de producto: Bloque de construcción Asset Manager 9.5
Versiones de motor de ejecución: AIR 1.0, Flash Player 9, Flash Player 10

Defines a constant for an event type that disables user interaction with the application.

ENABLE_USER_INTERACTION_EVENT

Constante 
public static const ENABLE_USER_INTERACTION_EVENT:String = "enableUserInteraction"

Versión del lenguaje: ActionScript 3.0
Versión de producto: Bloque de construcción Asset Manager 9.5
Versiones de motor de ejecución: AIR 1.0, Flash Player 9, Flash Player 10

Defines a constant for an event type that enables users to interact with the application.





[ X ]¿Por qué hay texto en inglés?
Cierto contenido de la Referencia de ActionScript 3.0 se muestra en inglés

No todo el contenido de la Referencia de ActionScript 3.0 se traduce a todos los idiomas. Si un elemento del lenguaje no se traduce, aparecerá en inglés. Por ejemplo, la clase ga.controls.HelpBox no está traducida en ningún idioma. Por lo tanto, en la versión en español de la referencia, la clase ga.controls.HelpBox aparecerá en inglés.