Little Help

Dearest All
I have made this website for a domain given by my uni. Can you please have a look at it an help me with s’thing.
http://sn.zabvision.edu.pk/Edit/B%20%26%20B.html
now as you move along the links you must realise that if i go from one link to another it just breaks the rythm. i.e so becuase the movie which is played on one scence starts from the logo being in the middle. Now I want to creat an effect so that when the user clicks on any link from any scence first the movie from the “curent” scene [i.e where the user is] plays back and winds up the logo and then the movie for the link on which user has clicked plays.
And i have made this form on the contacts i want to make the the “Send” button work in such a way that when user complets the form and click on the send the text and user’s e mail goes to my any perticular mailbox.
I would be thankful for any help.
Oh and the source file is on the link by the name of “B & B.fla”
http://sn.zabvision.edu.pk

Hi,

Study this code by tralfaz, not mine.

/*
You can also set a flag variable to control a movie clips direction. It requires very little code and is easy to understand when reading it.

On the main stage, place a button with an instance name like btn1.
On the main stage place a movieclip with instance name like mc_test.
Make up any new variable name like ‘forward’ and attach it to the movieclip object like this… mc_test.forward
*/

//----------------- MAIN TIMELINE (frame 1) ---------------
btn1.onRollOver = function () {
mc_test.forward = 1; // set the flag, forward is true
}

btn1.onRollOut = function () {
mc_test.forward = 0; // clear the flag, forward is false
}

//-------------- MOVIECLIP TIMELINE (frame 1) --------------
// this function is activated once on entry of every frame
// in the movieclip

onEnterFrame = function () {
if (forward)
gotoAndStop(_currentframe+1);
else
gotoAndStop(_currentframe - 1);
}

// that’s it! no more code needed.

/*
In other programming languages I would do checks to avoid going past the end of the last frame and below the first frame number 1, but in Flash, internal checks prevent going past the end frames and the _currentframe counter will not advance beyond the movieclips end points.
tf
*/

It works.
Viru.