Unload Movie

i have a very simple flash project with 3 object on my stage. the first one is a button with the following script:
on(release) {
loadMovie (“pano_final.swf”, “home”)
}
home is another movie clip that will load the external swf.
with the third movie clip i want to unload the movie and return to frame 1 of scene one where my initial button is. since the loaded swf covers everything i used the following code to put the movie clip on the top level
topmc.swapDepths(999)
inside the movie clip i have created a button with the following actions
on (release) {
unloadMovie(_root);
}
this unloads the movie but leaves me with a blank screen, while i want to return to frame 1 of scene 1!
help anyone please! :slight_smile:
by the way, AS2