loadMovie();

Hi All

I am creating a site that loads external swfs at the click of a button. I have three buttons and three empty movie clips, each on their own layer. I click a button and it loads the corresponding movie and unloads all other movies in order to clear the stage, fantastic! That is, until I load an swf that is playing a flv video clip. The video clip unloads as expected when either of the remaining buttons are clicked, however, the audio from the video continues to play!!! Not only that, but when I click on the button to reload the video movie, the movie loads, but will not play. All I get is the continuing audio from its previous load. Here is the code used on the button used to load the swf with the flv video. Eventually the site will play multiple videos at the click of a button, so can I get the videos to properly unload?

on (release) {
_root.movie2.unloadMovie(“test2.swf”);
_root.movie1.unloadMovie(“test.swf”);
_root.movie3.loadMovie(“billy.swf”);
}

Thanks
J