-2

TypeError: エラー #1009: null オブジェクト参照のプロパティまたはメソッドにアクセスできません。savethetiger_fla::MainTimeline/frame168() で

stop(); 
home_btn.addEventListener(MouseEvent.CLICK,home); 

function home(event:MouseEvent){ 
    gotoAndPlay(1,"scene1"); 
}

aboutus_btn.addEventListener(MouseEvent.CLICK,aboutus);

function aboutus(event:MouseEvent){ 
    gotoAndPlay(1,"Scene2"); 
}

gallery_btn.addEventListener(MouseEvent.CLICK,gallery); 
function gallery(event:MouseEvent){ 
    gotoAndPlay(1,"Scene5"); 
}

contactus_btn.addEventListener(MouseEvent.CLICK,contactus);

function contactus(event:MouseEvent){ 
    gotoAndPlay(1,"Scene4"); 
} 
4

1 に答える 1

0

コードは問題ないように見えますが、スペルがすべて正しいかどうか、およびこれらのアクションを割り当てたときにボタンが画面に表示されるかどうかを判断できません。

奇妙に見えることの 1 つは、この関数のスペルです。

function home(event:MouseEvent){ 
    gotoAndPlay(1,"scene1"); 
}

scene1の代わりによろしいですScene1か?そして、ありませんScene3、それは正しいですか?

于 2013-05-16T17:37:37.390 に答える