mybutton.addEventListener(MouseEvent.MOUSE_DOWN, thefunction);
function thefunction(event:MouseEvent):void {
gotoAndPlay(** frame on child movie clip **);
}
如何定位框架?
答案 0 :(得分:7)
从进入框架的子MovieClip
调用函数作为参数gotoAndPlay
例如,给定实例名称为childMovieClip
childMovieClip.gotoAndPlay(2);