EventListener
別の子であるボタンをボタンに追加しようとしていますMovieClip
が、以下のエラーが表示されます。コードはタイムライン内に配置されます。
TypeError: エラー #1009: null オブジェクト参照のプロパティまたはメソッドにアクセスできません。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");
}