作者ljm71 (ljm71)
看板Flash
標題[問題]練習寫分頁切換時 出現了錯誤
時間Tue Aug 26 00:12:45 2008
在練習寫分頁時,點擊分頁按鈕出現了錯誤訊息
但是看不懂它在寫什麼,請問它指的意思是什麼呢?
謝謝
TypeError: Error #1009: 無法存取 Null 物件參考的屬性或方法。
at _fla::MainTimeline/_fla::frame4()
影格1寫
stop();
juice_btn.addEventListener(MouseEvent.MOUSE_UP,onJuice);
cake_btn.addEventListener(MouseEvent.MOUSE_UP,oncake);
egg_btn.addEventListener(MouseEvent.MOUSE_UP,onegg);
function onJuice(event:MouseEvent):void{
gotoAndStop(4);
};
function oncake(event:MouseEvent):void{
gotoAndStop(3);
};
function onegg(event:MouseEvent):void{
gotoAndStop(2);
};
影格2~4寫
juice_btn.addEventListener(MouseEvent.MOUSE_UP,onJuice);
cake_btn.addEventListener(MouseEvent.MOUSE_UP,oncake);
egg_btn.addEventListener(MouseEvent.MOUSE_UP,onegg);
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 118.169.214.222
推 cjcat2266:你第四格的egg_btn還存在嗎? 不存在的話就是null 08/26 00:35
→ ljm71:感謝~我查看看一下按鈕是不是更名或打錯 08/26 01:24