Anyone know how to script this?
Try
onClipEvent(enterFrame){
prevFrame();
}
Use the MovieClip.prevFrame method within an onEnterFrame handler.
Example:
[AS]// send playhead to last frame
myMovieClip.gotoAndStop(myMovieClip._totalframes);
myMovieClip.onEnterFrame = function() {
// if the current frame is not equal to 1
if (this._currentframe != 1) {
// go to previous frame
this.prevFrame();
} else {
// delete handler to save resources
delete this.onEnterFrame;
}
};[/AS]
And also use this little button: .