# REALLY BIG PROBLEM ... I think

**URL:** https://forum.kirupa.com/t/really-big-problem-i-think/224116
**Category:** flash
**Created:** [April 28, 2007, 8:07pm UTC](https://forum.kirupa.com/t/really-big-problem-i-think/224116 "2007-04-28T20:07:08Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![flaminnoraa](https://avatars.discourse-cdn.com/v4/letter/f/c4cdca/32.png) [@flaminnoraa](https://forum.kirupa.com/u/flaminnoraa)
#### Post date: [April 28, 2007, 8:07pm UTC](https://forum.kirupa.com/t/really-big-problem-i-think/224116/1 "2007-04-28T20:07:08Z")

</div>

Right. Where to start.  
1: Whenever I create a movieClip in flash 8 , if I try to edit it inside the movieClip the snapping doesn’t work.

2: Actionscript. Whenever I export anything it always ignores part of the actionscript. for example I was trying to duplicatMovieClip and when I exported it it duplicated once and but wouldn’t duplicate again. Code example:  
on (press) {  
i = i+1;  
duplicateMovieClip(\_root.circle, “circle”+i, i);  
}  
on the button and :  
onClipEvent (load) {  
scale = (random(100)+50);  
this.\_x = random(250);  
this.\_y = random(150);  
this.\_alpha = random(100);  
this.\_xscale = scale;  
this.\_yscale = scale;  
}  
on the movieClip. This was downloaded from a tutorial. Works on the source file but not on my own file.

Also I was increasing the \_xscale till it got to 100 then it was supposed to stop but it didn’t : if(\_xscale\>100){\_xscale=100}

HELP
