Smooth transition using rewind

Hello everyone, I am very new to actionscripting but not so new to flash. I’ve just started asing today and am already racking my brains out over the simplest script. Basically I want to make a navigation with a seemless transition. One with an intro but NO outro so to speak. So I’d like to ask if that were possible to do this, I’ve attached a very noobish and crude model, please don’t laugh :wink: . I’ve also skimmed through kirupa to look for similar scripts and I’ve found acouple of interesting scripts but don’t really know how to append and reorganize em into global functions and other stuffz.

MovieClip.prototype.backward = function() {
this.gotoAndStop(this._totalframes);
this.onEnterFrame = function() {
this.gotoAndStop(this._currentframe-1);// if you can have a -1 can you also play the timeline frames by typing 1 instead?
};
};

(** Usage: **)

myClip.backward();

inx = 40;outx = 100;ease = 3;clips = [menu1, menu2, menu3, menu4, menu5, menu6];selected = null;clicked = function(){ selected.targ = inx; (selected = this).targ = outx;}easeTo = function(){ this._x += (this.targ-this._x)/ease;}for (i=0; i< clips.length; i++){ clips*.onRelease = clicked; clips*.onEnterFrame = easeTo; clips*.targ = inx;}thank you senocular and h88 for said examples. Actionscripting looks fun!!