在as2中确定event.target

时间:2012-08-27 12:37:01

标签: flash events actionscript-2 adobe-flash-cs3

如何检测在as2中触发了哪个movieClip事件。我已经制作了一个重复的动画片段列表,并希望在每个动画片段上添加点击事件,并区分哪个动画片段事件有多个。我知道as3中的解决方案,但需要as2解决方案。请帮忙。

1 个答案:

答案 0 :(得分:0)

在AS2中,当您使用myButton.onRelease = myFunction;分配了一个功能时,在该功能中,您只需使用this即可引用来电者:

function myFunction() {
 trace(this._name);
}

myButton.onRelease = myFunction; // will trace "myButton" when you click it