Извините за плохой английский,
Установите обработчик для кнопок (Menu-), которые расположены в MC.
MC «Кнопки» на сцене (с 3 «testbtn» в нем) @ первый кадр:
function SetMethod(Method:Function){
//trace(Method.call());
//or something like:
testbtn1.addEventListener(MouseEvent.CLICK, Method);
testbtn2.addEventListener(MouseEvent.CLICK, Method);
testbtn3.addEventListener(MouseEvent.CLICK, Method);
}
Сцена (с MC "Butttons") @ первый кадр:
function TheMenuListener(evt:Event):void{
trace(evt.target.name);
}
...
Buttons.SetMethod(this.TheMenuListener);
возвращает testbtn.name
Редактировать: О, это для AS3, но, возможно, помогает!