unloadMovie Issues

Sup All :: I know there are a million threads pertaining to this subject, but none of them seemed to help ::

Alright here we go.

My main page is called index :: index loads a movie called student :: inside student I want to show a “clip” called video1. I can load video1 except it won’t unload. I can get it to unload but “student” disappears with it. Here’s the code I"m using to call “video1”.

on (press)
{
video1 = this.createEmptyMovieClip(“video1.swf”,1);
video1.loadMovie(“video1.swf”,1);
video1._x = 127;
video1._y = 114;
}

i don’t have it into a MC because I can’t get it to run/load when I load it into a MC so i created a video1 variable :: so I’ve tried

on (press)
{
unloadMovie(1);
unloadMovie(this);
unloadMovie(video1);
unloadMovie(“video1.swf”);
}

none of those seem to be working

Thanks in advance All

.michael