パッケージ | com.adobe.livecycle.assetmanager.client.handler |
クラス | public class AssetHandlerRegistry |
継承 | AssetHandlerRegistry EventDispatcher Object |
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Asset Manager Building Block 9.5 |
ランタイムバージョン: | AIR 1.0, Flash Player 9, Flash Player 10 |
メソッド | 定義元 | ||
---|---|---|---|
Constructor. | AssetHandlerRegistry | ||
addEventListener(type:String, listener:Function, useCapture:Boolean = false, priority:int = 0, useWeakReference:Boolean = false):void
イベントリスナーオブジェクトを EventDispatcher オブジェクトに登録し、リスナーがイベントの通知を受け取るようにします。 | EventDispatcher | ||
イベントをイベントフローに送出します。 | EventDispatcher | ||
[静的]
A singleton that retrieves an AssetHandlerRegistry event. | AssetHandlerRegistry | ||
EventDispatcher オブジェクトに、特定のイベントタイプに対して登録されたリスナーがあるかどうかを確認します。 | EventDispatcher | ||
オブジェクトに指定されたプロパティが定義されているかどうかを示します。 | Object | ||
Object クラスのインスタンスが、パラメーターとして指定されたオブジェクトのプロトタイプチェーン内にあるかどうかを示します。 | Object | ||
Checks whether a handler is registered for a specified assetType. | AssetHandlerRegistry | ||
Returns the assetHandler that corresponds to the specified assetType. | AssetHandlerRegistry | ||
指定されたプロパティが存在し、列挙できるかどうかを示します。 | Object | ||
A singleton registry that is used to register an asset handler. | AssetHandlerRegistry | ||
EventDispatcher オブジェクトからリスナーを削除します。 | EventDispatcher | ||
ループ処理に対するダイナミックプロパティの可用性を設定します。 | Object | ||
Starts the registry that calls the initialize function of individual handlers. | AssetHandlerRegistry | ||
ロケール固有の規則に従って書式設定された、このオブジェクトのストリング表現を返します。 | Object | ||
指定されたオブジェクトのストリング表現を返します。 | Object | ||
指定されたオブジェクトのプリミティブな値を返します。 | Object | ||
指定されたイベントタイプについて、この EventDispatcher オブジェクトまたはその祖先にイベントリスナーが登録されているかどうかを確認します。 | EventDispatcher |
イベント | 概要 | 定義元 | ||
---|---|---|---|---|
[ブロードキャストイベント] Flash Player または AIR アプリケーションがオペレーティングシステムのフォーカスを取得して、アクティブになったときに送出されます。 | EventDispatcher | |||
An event that is thrown when AssetHandler has completed the assetAction initiated by the user via the user interface. | AssetHandlerRegistry | |||
[ブロードキャストイベント] Flash Player または AIR アプリケーションがオペレーティングシステムのフォーカスを失って、非アクティブになったときに送出されます。 | 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 |
定数 | 定義元 | ||
---|---|---|---|
DISABLE_USER_INTERACTION_EVENT : String = "disableUserInteraction" [静的]
Defines a constant for an event type that disables user interaction with the application. | AssetHandlerRegistry | ||
ENABLE_USER_INTERACTION_EVENT : String = "enableUserInteraction" [静的]
Defines a constant for an event type that enables users to interact with the application. | AssetHandlerRegistry |
AssetHandlerRegistry | () | コンストラクター |
public function AssetHandlerRegistry()
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Asset Manager Building Block 9.5 |
ランタイムバージョン: | AIR 1.0, Flash Player 9, Flash Player 10 |
Constructor.
getInstance | () | メソッド |
public static function getInstance():AssetHandlerRegistry
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Asset Manager Building Block 9.5 |
ランタイムバージョン: | AIR 1.0, Flash Player 9, Flash Player 10 |
A singleton that retrieves an AssetHandlerRegistry event.
戻り値AssetHandlerRegistry —
|
isRegistered | () | メソッド |
public function isRegistered(assetType:String):Boolean
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Asset Manager Building Block 9.5 |
ランタイムバージョン: | AIR 1.0, Flash Player 9, Flash Player 10 |
Checks whether a handler is registered for a specified assetType.
パラメーター
assetType:String — The asset to check.
|
Boolean — Specifies whether the handler is registered. If the value is true, it is registered.
|
lookup | () | メソッド |
public function lookup(assetType:String):IAssetHandler
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Asset Manager Building Block 9.5 |
ランタイムバージョン: | AIR 1.0, Flash Player 9, Flash Player 10 |
Returns the assetHandler that corresponds to the specified assetType.
パラメーター
assetType:String — The asset type for which the assetHandler is required.
|
IAssetHandler — An interface implemented by all asset handlers.
|
register | () | メソッド |
public function register(handler:IAssetHandler):void
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Asset Manager Building Block 9.5 |
ランタイムバージョン: | AIR 1.0, Flash Player 9, Flash Player 10 |
A singleton registry that is used to register an asset handler.
パラメーター
handler:IAssetHandler — The handler to register.
|
start | () | メソッド |
public function start():void
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Asset Manager Building Block 9.5 |
ランタイムバージョン: | AIR 1.0, Flash Player 9, Flash Player 10 |
Starts the registry that calls the initialize function of individual handlers.
assetActionComplete | イベント |
com.adobe.livecycle.assetmanager.client.event.AssetActionCompleteEvent
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Asset Manager Building Block 9.5 |
ランタイムバージョン: | 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 | イベント |
mx.events.FlexEvent
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Asset Manager Building Block 9.5 |
ランタイムバージョン: | 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 | イベント |
mx.events.FlexEvent
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Asset Manager Building Block 9.5 |
ランタイムバージョン: | 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 | イベント |
mx.events.FlexEvent
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Asset Manager Building Block 9.5 |
ランタイムバージョン: | 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.
DISABLE_USER_INTERACTION_EVENT | 定数 |
public static const DISABLE_USER_INTERACTION_EVENT:String = "disableUserInteraction"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Asset Manager Building Block 9.5 |
ランタイムバージョン: | 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 | 定数 |
public static const ENABLE_USER_INTERACTION_EVENT:String = "enableUserInteraction"
言語バージョン: | ActionScript 3.0 |
製品バージョン: | Asset Manager Building Block 9.5 |
ランタイムバージョン: | AIR 1.0, Flash Player 9, Flash Player 10 |
Defines a constant for an event type that enables users to interact with the application.
Tue Jun 12 2018, 10:34 AM Z