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});
このページの左側にメニューが表示されていない場合は、ここをクリックするとメニューを表示させることができます。