Skip to main content
Known Participant
August 25, 2011
Answered

Acces of undentified property start_.

  • August 25, 2011
  • 2 replies
  • 310 views

When i start the movie this error posps up: acces of undentified property start_.

stop();

import flash.events.MouseEvent

start_.addEventListener(MouseEvent.CLICK, onClick);

function onClick(event:MouseEvent):void {

gotoAndStop(1,"Scene 247");

gotoAndStop(1,"Menu");

}

How can i fix this?

This topic has been closed for replies.
Correct answer Ned Murphy

And as mentioned yesterday, you can't expect to go to two places at the same time...

gotoAndStop(1,"Scene 247");

gotoAndStop(1,"Menu");

2 replies

Ned Murphy
Ned MurphyCorrect answer
Legend
August 25, 2011

And as mentioned yesterday, you can't expect to go to two places at the same time...

gotoAndStop(1,"Scene 247");

gotoAndStop(1,"Menu");

kglad
Community Expert
Community Expert
August 25, 2011

you need to create an interactiveobject named start_ so you can apply your event listener to it.