Easy loadMovie Question

I want to create a splash swf file with an “enter” button. After you click the “enter” button, I want a new swf file to load in it’s place, not as a target.

You could put the splash in a movieClip (or convert it into a movie clip), then with the enter button, load the next swf into that same movie clip at level0 and it will replace it with just
on(release) {
_root.yourClip.loadMovie(“yourswf.swf”);
}

That did not work for me. I’m just trying to create this effect: http://www.alphachapteraka.org

just use the
loadMovie(“swfname”,0)
it loads it into level o of the _root timeline

Thank You!!!