我正在尝试向EventListener
我的按钮添加一个按钮,该按钮是另一个按钮的子按钮,MovieClip
但我收到以下错误。代码放在我的时间线内。
TypeError:错误 #1009:无法访问空对象引用的属性或方法。在 Exotic_fla::MainTimeline/frame1()
movClip.Play_btn.addEventListener(MouseEvent.CLICK,playfunc);
//movClip.Play_btn.visible = false;// this give the same result
function playfunc(evt:MouseEvent){
SoundMixer.stopAll();
gotoAndPlay(1, "Scene 2");
}