onErrorScope

言語バージョン

AS2 and AS3.

語法

... onErrorScope:value, ...

パラメーター

value:Object — onErrorファンクションのスコープとなるオブジェクト。イベントファンクションの中に特殊なコードを記述した場合に必要となる。このパラメーターを使うことで、ファンクション内でのthis.の示す参照を定義することができる。このパラメーターが指定されてない場合、トゥイーン対象のオブジェクト自身がスコープとみなされる。

用例

// Run an event on an object, and output the scope in which the event is being executed, IF there's an error
// Output: "Error! _level0.box", the tweened object itself, IF there's an error
Tweener.addTween(this.box, {_x:100, time:1, onComplete:function() { trace ("Error! " + this); }});
// Output: "Error! _level0", the scope from which the tween was started, IF there's an error
Tweener.addTween(this.box, {_y:100, time:1, onComplete:function() { trace ("Error! " + this); }, onCompleteScope:this});

参照

onError

メニューの表示について

このページの左側にメニューが表示されていない場合は、ここをクリックするとメニューを表示させることができます。

本ドキュメントについて