# I'm stuck! (Movieclip problem)

**URL:** https://forum.kirupa.com/t/im-stuck-movieclip-problem/220722
**Category:** flash
**Created:** [March 28, 2007, 6:26pm UTC](https://forum.kirupa.com/t/im-stuck-movieclip-problem/220722 "2007-03-28T18:26:58Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![skindy](https://avatars.discourse-cdn.com/v4/letter/s/91b2a8/32.png) [@skindy](https://forum.kirupa.com/u/skindy)
#### Post date: [March 28, 2007, 6:26pm UTC](https://forum.kirupa.com/t/im-stuck-movieclip-problem/220722/1 "2007-03-28T18:26:58Z")

</div>

I tried searching through the forums before posting my question in case the answer was already out there. I’m sure it is and I just missed it ;'( Anyway, here is my dilemma …

Some of the action-script ;')

> 

flower\_mc.petal1\_mc.onRelease = function() {  
flower\_mc.petal1\_mc.onEnterFrame = function() {  
if (\_root.flower\_mc.\_x \<= 320) {  
\_root.flower\_mc.\_x += 5;  
\_root.container.loadMovie(“about.swf”,1);  
updateAfterEvent();  
}  
}  
}

flower\_mc.petal2\_mc.onRelease = function() {  
flower\_mc.petal2\_mc.onEnterFrame = function() {  
if (\_root.flower\_mc.\_x \<= 320) {  
\_root.flower\_mc.\_x += 5;  
\_root.container.loadMovie(“contact.swf”,1);  
updateAfterEvent();  
}  
}  
}  
“about.swf” will load when it is the first .swf loaded.  
“contact.swf” will load when it is the first .swf loaded.

If “about.swf” is loaded and I try loading “contact.swf,” it will not load and “about.swf” won’t go away. Same thing happens if I do it vice-versa. Could it be something simple that I have overlooked? I have tried “unLoadmovie” but that doesn’t work. I also have three other movieclips that need to be loaded also. Any help or suggestions are greatly appreciated! 😃
