# unloadMovie Issues

**URL:** https://forum.kirupa.com/t/unloadmovie-issues/128171
**Category:** Uncategorized
**Created:** [November 10, 2004, 4:43am UTC](https://forum.kirupa.com/t/unloadmovie-issues/128171 "2004-11-10T04:43:33Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![michael1](https://avatars.discourse-cdn.com/v4/letter/m/eada6e/32.png) [@michael1](https://forum.kirupa.com/u/michael1)
#### Post date: [November 10, 2004, 4:43am UTC](https://forum.kirupa.com/t/unloadmovie-issues/128171/1 "2004-11-10T04:43:33Z")

</div>

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
