gotoAndStop()
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