-2

TypeError:错误 #1009:无法访问空对象引用的属性或方法。在 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

您的代码看起来不错,但我们无法确定您是否正确拼写了所有内容,以及分配这些操作时您的按钮是否出现在屏幕上。

看起来很奇怪的一件事是这个函数中的拼写

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

你确定它是scene1而不是Scene1?而且没有Scene3,对吗?

于 2013-05-16T17:37:37.390 回答