TypeError: Error #1009: Cannot access a property or method of a null object reference.
Hey, I can't figure out the error. When I clicked the "back_btn" it will the whole .fla will freeze and show me TypeError: Error #1009: Cannot access a property or method of a null object reference. I did not put any "stop();" or anything. Why is this happening?
Here is my code:
back_btn.addEventListener(MouseEvent.CLICK, fl_ClickToGoToAndPlayFromFrame);
function fl_ClickToGoToAndPlayFromFrame(event:MouseEvent):void
{
gotoAndPlay("menu");
}
That's the only coding I have. Why do I have this error?
