# Help! Unloading Movie

**URL:** https://forum.kirupa.com/t/help-unloading-movie/190037
**Category:** Uncategorized
**Created:** [June 8, 2006, 5:32am UTC](https://forum.kirupa.com/t/help-unloading-movie/190037 "2006-06-08T05:32:14Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![karthic\_vkn](https://avatars.discourse-cdn.com/v4/letter/k/da6949/32.png) [@karthic\_vkn](https://forum.kirupa.com/u/karthic_vkn)
#### Post date: [June 8, 2006, 5:32am UTC](https://forum.kirupa.com/t/help-unloading-movie/190037/1 "2006-06-08T05:32:14Z")

</div>

[COLOR=black][FONT=Arial]Hi friends… Somebody Help me. i did a Snow falls effect in flash with actionscript. That Script is…[/FONT][/COLOR]  
[COLOR=black][FONT=Arial] [/FONT][/COLOR]  
[COLOR=black][FONT=Arial]------------------------------------------------------------------------[/FONT][/COLOR]  
[COLOR=black][FONT=Arial]init = function () {  
width = 800;  
// pixels  
height = 600;  
// pixels  
max\_snowsize = 10;  
// pixels  
snowflakes = 50;  
// quantity  
for (i=0; i\<snowflakes; i++) {  
t = attachMovie(“snow”, “snow”+i, i);  
t.\_alpha = 20+Math.random()_560;  
t.\_x = -(width/2)+Math.random()_(1.5_width);  
t.\_y = -(height/2)+Math.random()_(1.5_height);  
t.\_xscale = t.\_yscale=50+Math.random()_(max\_snowsize_10);  
t.k = 1+Math.random()2;  
t.wind = -1.5+Math.random()(1.4_3);  
t.onEnterFrame = mover;  
}  
};  
mover = function() {  
this.\_y += this.k;  
this.\_x += this.wind;  
if (this.\_y\>height+50) {  
this.\_y = -20;  
}  
if (this.\_x\>width+20) {  
this.\_x = -(width/2)+Math.random()_(5.5_width);  
this.\_y = -20;  
} else if (this.\_x\<-20) {  
this.\_x = -(width/2)+Math.random()_(5.5_width);  
this.\_y = -20;  
}  
}  
init();[/FONT][/COLOR]  
[COLOR=black][FONT=Arial] [/FONT][/COLOR]  
[COLOR=black][FONT=Arial]------------------------------------------------------------------------[/FONT][/COLOR]  
[COLOR=black][FONT=Arial] [/FONT][/COLOR]  
[COLOR=black][FONT=Arial]successfully i done it. but now i want to Unload all attached movie… I try some methods… but i cannt do… [/FONT][/COLOR]  
[COLOR=black][FONT=Arial] [/FONT][/COLOR]  
[COLOR=black][FONT=Arial]plz somebody help me…[/FONT][/COLOR]  
[FONT=Calibri][SIZE=3] [/SIZE][/FONT]
