以前在AS2.0中发生如下:
my_Mc.onPress = function()
{
trace( this)
}
//output :
[my_Mc Movieclip]
然而在AS3.0中,我想知道如何实现这个
my_Mc.addEventListener( MouseEvent.CLICK, click) ;
function click(e:Event)
{
trace( this ) ; // output is the class instance, where the handler is being used
// How to get the instance of my_Mc here ????
}
感谢。
答案 0 :(得分:2)
您正在寻找的是e.currentTarget
属性。