Adobe® Flash® Platform 用 ActionScript® 3.0 リファレンスガイド
ホーム  |  パッケージおよびクラスリストの非表示 |  パッケージ  |  クラス  |  新機能  |  索引  |  付録  |  英語で表示される理由
フィルター: サーバーからデータを取得しています...
サーバーからデータを取得しています...
 

パッケージ lc.foundation.util 


パブリックメソッド
 関数定義元
  
addOneShotEventListener(dispatcher:IEventDispatcher, type:String, listener:Function, useCapture:Boolean = false, priority:int = 0):void
Add an event listener to the specified event dispatcher ensuring that it will only fire once.
lc.foundation.util
  
Create an adapter function that calls the provided function with the provided parameters, appending any parameters passed in when it is invoked.
lc.foundation.util
関数の詳細

addOneShotEventListener

()関数
public function addOneShotEventListener(dispatcher:IEventDispatcher, type:String, listener:Function, useCapture:Boolean = false, priority:int = 0):void

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Document Services - Workspace 9
ランタイムバージョン: AIR (unsupported), Flash Player 9, Flash Player 10

Add an event listener to the specified event dispatcher ensuring that it will only fire once.

パラメーター

dispatcher:IEventDispatcher — The event dispatcher to add the listener to.
 
type:String — The type of event.
 
listener:Function — The listener function that processes the event. This function must accept an Event object as its only parameter and must return nothing.
 
useCapture:Boolean (default = false) — Determines whether the listener works in the capture phase or the target and bubbling phases. If useCapture is set to true, the listener processes the event only during the capture phase and not in the target or bubbling phase. If useCapture is false, the listener processes the event only during the target or bubbling phase. To listen for the event in all three phases, call addEventListener() twice, once with useCapture set to true, then again with useCapture set to false.
 
priority:int (default = 0) — The priority level of the event listener. Priorities are designated by a 32-bit integer. The higher the number, the higher the priority. All listeners with priority n are processed before listeners of priority n-1. If two or more listeners share the same priority, they are processed in the order in which they were added. The default priority is 0.

addParams

()関数 
public function addParams(func:Function, ... params):Function

言語バージョン: ActionScript 3.0
製品バージョン: Adobe Digital Enterprise Platform Document Services - Workspace 9
ランタイムバージョン: AIR (unsupported), Flash Player 9, Flash Player 10

Create an adapter function that calls the provided function with the provided parameters, appending any parameters passed in when it is invoked. The returned adapter function will accept any number of parameters to be appended.

パラメーター

func:Function — The function to adapt.
 
... params — An arbitrary number of additional parameters to be passed to the provided function when the returned adapter function is called.

戻り値
Function — The created adapter function.

[ X ]英語で表示される理由
ActionScript 3.0 リファレンスガイドのコンテンツが英語で表示されます。

ActionScript 3.0 リファレンスガイドのすべての部分がすべての言語に翻訳されているわけではありません。言語エレメントが翻訳されていない場合、そのエレメントは英語で表示されます。例えば、ga.controls.HelpBox クラスはどの言語にも訳されていません。このため、リファレンスガイドの日本語バージョンでは、ga.controls.HelpBox クラスは英語で表示されます。