Skip to main content
Participant
September 15, 2009
Answered

Easy question

  • September 15, 2009
  • 2 replies
  • 539 views

Hi all,

I'm really terrible with AS2 and I need some help.  Here's what I have:

I have two key frames frame one and two.

On the first keyframe I made a small movie.

Once the movie finishes it repeats but I want to go to the next movie which is on the second frame of the main time line.

I tried this:

gotoAndPlay("Scene 1", 2);

but it just goes to the second frame of the first movie and plays.

Thanks all

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

Try:  _parent.gotoAndPlay(2); 

assuming there is a stop() at frame 2.

2 replies

Lon_Winters
Inspiring
September 15, 2009

stop();

_parent.gotoAndStop(2);

Participant
September 15, 2009

You guys rock and I have bought you both a virtual beer.

Ned Murphy
Ned MurphyCorrect answer
Legend
September 15, 2009

Try:  _parent.gotoAndPlay(2); 

assuming there is a stop() at frame 2.