I need a kind of go previous button that will
make the play-head run backwards, its for a photo-gallery
that has blends/fades between each photo- or is there an
easier way to do this?
well there isn't a standard way of doing it, but there is some tricks.
you can create a external movie clip on the stage that just repeats a bit of code. Have the second frame say
gotoAndPlay(1);
this will make it just repeat and repeat the code in the first frame.
now on the first frame of that movie clip you would have
yourMovieClip.prevFrame();
that will make yourMovieClip (what ever you want to go backwards) to go back one frame. When this code is repeated everyframe you can then get yourMovieClip to play backwards.
You could control it buy telling this new external movieClip when to play and when to gotoAndStop(3); or whatever
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.