I've got two buttons on my stage. One with the instance name 'logo' and once with the instance name 'watch'. The AS3 code is very simple and accurate. Or so I thought:
--
logo.addEventListener(MouseEvent.MOUSE_DOWN, homelink);
function homelink(evt:MouseEvent):void {
gotoAndStop("home");
}
watch.addEventListener(MouseEvent.MOUSE_DOWN, watchlink);
function watchlink(evt:MouseEvent):void {
gotoAndStop("watch");
}
--
Really simple, right? Not so fast. I test my movie and get the following error:
--
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at main_fla::MainTimeline/frame2()
at flash.display::MovieClip/gotoAndStop()
at main_fla::MainTimeline/PL_LOADING()
--
Where did that come from? That's where I'm confused. What is PL_LOADING()? The keyframe is setup properly so none of this makes any sense. At least not to me. So where is this 1009 error coming from and how can I correct it?