我收到错误
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at home_fla::MainTimeline/frame4()[home_fla.MainTimeline::frame4:14]
at flash.display::MovieClip/gotoAndStop()
at home_fla::MainTimeline/fl_ClickToGoToAndStopAtFrame4()[home_fla.MainTimeline::frame1:26]
当我尝试按钮从第1帧到第4页 - 第四帧的名称。
settingsBtn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndStopAtFrame4);
function fl_ClickToGoToAndStopAtFrame4(event:MouseEvent):void
{
trace(settingsBtn);
gotoAndStop("page4");
}
由于我是AS3的新手,我无法通过自己找到解决方案。任何帮助将不胜感激。
答案 0 :(得分:-2)
我猜frame4
时,null
对象(由“page4”引用)为gotoAndStop("page4")
。