Flash outros before next page loads?

Hey everyone I have a question that I hope I can explain properly. I am fairly new to flash so the simplest answer would be much appreciated. Heres the deal:

When I build Flash sites I make a main page that has an empty interface with buttons. I assign actions to the buttons to load the movies into the interface. I am having no problems doing that but I dont want all my flash pages to only have an introduction to each page. How would I have a movie load on the HOME page for example and hold until the viewer clicks any of the other buttons. Then HOME page plays an outro then the next page selected loads.

If the above is confusing you: say the HOME page fades in when it loads. The user clicks the ABOUT button I want the HOME page to fade out and the ABOUT page fade in. When the viewer clicks CONTACT the ABOUT page fades out and the CONTACT page fades in.

Thanx for your help…I can post an example if this makes no sense whatsoever…

Hey first of all welcome to Kirupa

There are quite a few post already on this issue, check this one out, see if it can help you

http://www.kirupaforum.com/showthread.php?s=&threadid=9770

On my website i have something like that. What it does is load a movie into a layer after playing a fade out.

All i did was this:

  1. Plays fade-in and stops

  2. User clicks a button - plays movie and creates a variable eg. goto_area = “About”

  3. Stops at the end of the fade-out

  4. If statement:

    if (goto_area == “About”) {
    loadMovieNum(“About.swf”, 1);
    }

  5. you may need to have an unload action here, too.

I hope thats the kind of thing you wanted if not just ignore all that i said.

What you can do is on the click of the button, tell the computer to load the new movie into an invisible placeholder. Then play a fade out of the current movie before moving the loaded one onto the main screen and playing that.