Раньше в 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 ????
}
спасибо.