Hi everyone. (Iam a newbie)

I would appreciate if anyone could help with this.

I am trying to replace one movie with another which contains different content.

I have managed to load movie on frame on main timeline which is fine but what I want is to replace this
movie when the visitor clicks the appropriate button on this movie.

The mainpage will contain a few movies that will not change once loaded so these will be left on level '0'.
I have not created the movies that will go on levels 0,1 and 2 yet.

The action on the main time line is:

loadMovieNum("site_mcAbout.swf", 3);
stop();

which works fine (contains buttons -about-training-presentations-consultancy)

I get the movie to load but you can still see the first movie.
The information I have had is that if you load a movie into level '0' it will automatically remove
the movie and replace with the loaded movie but I do not want to remove all the movies on level '0' as
these are the movies that will remain constant.

Because of this I have tried the code below to unload the intial move site_mcAbout.swf and then load
site_mcTraining.swf but I still get the same result of the old movie still being there.

on (press) {
unloadMovie ("site_mcAbout.swf");
loadMovieNum ("site_mcTraining.swf", 3);
}

The only thing I can guess is may be I have to have movies on all the previous levels first?

Can some help or advise as to how to get it right or anther way of resolving the situation.

Thankyou

Much appreciated.

Kirk
PS Sorry for the long explanation