Skip to main content
HealhyM
Participant
May 13, 2015
Question

TypeError: Error #1009: Cannot access a property or method of a null object reference.

  • May 13, 2015
  • 1 reply
  • 258 views

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?

This topic has been closed for replies.

1 reply

Ned Murphy
Legend
May 13, 2015

The 1009 error indicates that one of the objects being targeted by your code is out of scope.  This could mean that the object....

 

- is declared but not instantiated

- doesn't have an instance name (or the instance name is mispelled)

- does not exist in the frame where that code is trying to talk to it

- is animated into place but is not assigned instance names in every keyframe for it

- is one of two or more consecutive keyframes of the same objects with no name assigned in the preceding frame(s).

 

If you go into your Publish Settings Flash section and select the option to Permit debugging, your error message should have a line number following the frame number which will help you isolate which object is involved.