gotoAndplay/Stop not working ne more
Hi,
I created a movie with several nested movie clips. within these movies are stop actions to prevent the clips from playing at the wrong time. I created the gotoAndPlay/stop functions to play these clips at certain points of the animation. Now at first these actions worked smoothly and exactly as i wanted, however after several test movies, some of the gotoandplay/stop functions stoped working. Has ne 1 ever ecounterd this problem is there a way repair these actions without recreating the whole movie? i tried rewritting the scripts and still does not work.
thx
solving gotoAndPlay problem
I had the following problem :
either
movie.gotoAndPlay(2)
or
movie.Play(2)
would behave just the same as
movie.gotoAndStop(2)
or
movie.Stop(2)
even when I had a play() action on frame 2.
The SOLUTION was :
tellTarget(movie) {
gotoAndPlay(2);
}
Hope this helps !