Loadmovie helpp!

I need some help on this loadmovie stuff

anyways i got this animation which is like the Home content of a DVD and you can press play and all that i pasted the following animation into my other button called QUIZ which will trigger a quiz i made:

[COLOR=blue]on (release) {
loadMovieNum (“Animationquiz.swf”,2)
}[/COLOR]

and when i tested it out it’s plays ON TOP of my Home content page so i just want to ask how i can play my quiz without my Home content page still lurking in the back.

P.S my opening page has an actionscript for snow and some music so i was wondering maybe that was the problem. I am using AS 2 at the moment :angel:

Umm, make your swf fill the stage? Or have it go to a diffrent frame?

[QUOTE=omnimaqq;2354428]I need some help on this loadmovie stuff

anyways i got this animation which is like the Home content of a DVD and you can press play and all that i pasted the following animation into my other button called QUIZ which will trigger a quiz i made:

[COLOR=blue]on (release) {
loadMovieNum (“Animationquiz.swf”,2)
}[/COLOR]

and when i tested it out it’s plays ON TOP of my Home content page so i just want to ask how i can play my quiz without my Home content page still lurking in the back.

P.S my opening page has an actionscript for snow and some music so i was wondering maybe that was the problem. I am using AS 2 at the moment :angel:[/QUOTE]

on (release) {
nextFrame();
}

Then on the next frame of your root timeline, leave it blank and put the following code:

stop();
loadMovieNum (“Animationquiz.swf”,2)

homeMC._visible = false

quit spamming :stuck_out_tongue:

Also…you might consider using :

on (release) {
loadMovie (“Animationquiz.swf”,2)
}

instead of loadMovieNum.
I’ve heard that loadMovieNum has some restrictions being that it debuted in AS1. Might be more useful in the future as well.
Just a thought.