prevFrame plus another

I have a flash animation quiz where it goes from frame 1 to frame 31 after a button, but I want it to return to frame 2 for the next question. Outline: frame 31 has dynamic text with revealing the outcome of your submitted answer and the button. Thanks so much!

Chris

Im not sure I fully understand, but if I get the gist of what you are saying you would use gotoAndStop(2)

on(release){
       _root.myMovieClip_mc.gotoAndStop(2);
}

you wouldn’t want to use prevFrame(); since that would only take you back one frame, unless you used it in conjunction with an onEnterFrame handler.