Skip to main content
Inspiring
June 7, 2011
Answered

gotoAndStop()

  • June 7, 2011
  • 2 replies
  • 527 views

hi,

     In my application i write the code in three frames.

          First frame - call the second frame using gotoAndStop(2)

          similarly Second frame - call the third frame using gotoAndStop(3) and

          Third frame - call itself using gotoAndStop(3) but it is not working .

Ex:

Frame:1

trace("First Frame");

gotoAndStop(2);

Frame:2

trace("second frame");

gotoAndStop(3);

Frame:3

trace("third frame");

gotoAndStop(3)  // it is not working

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

If you are expecting to see the trace happen again, it will not.  If you are in frame 3 and the command is to go to frame 3, it has nowhere to go so it stays where it is... the trace will not re-execute.

2 replies

Ned Murphy
Ned MurphyCorrect answer
Legend
June 7, 2011

If you are expecting to see the trace happen again, it will not.  If you are in frame 3 and the command is to go to frame 3, it has nowhere to go so it stays where it is... the trace will not re-execute.

relaxatraja
Inspiring
June 7, 2011

When the framehead is in 3rd frame how it works? Its already working. But what the purpose?