# Stop Automatic Resize

**URL:** https://forum.kirupa.com/t/stop-automatic-resize/197070
**Category:** flash
**Created:** [August 13, 2006, 3:42pm UTC](https://forum.kirupa.com/t/stop-automatic-resize/197070 "2006-08-13T15:42:27Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Tyg3r](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/tyg3r/32/1341_2.png) [@Tyg3r](https://forum.kirupa.com/u/Tyg3r)
#### Post date: [August 13, 2006, 3:42pm UTC](https://forum.kirupa.com/t/stop-automatic-resize/197070/1 "2006-08-13T15:42:27Z")

</div>

Hi

I’ve set a movieClip to resize using ActionScript. But I’m not sure how to stop the resizing once it has met a certain size. In my situation, I want it to stop resizing when both the height and width have met 500px’s.

[AS]  
movieClip.onEnterFrame = function(){  
movieClip.\_width = movieClip.\_width+=2;  
movieClip.\_height = movieClip.\_height+=2;  
}  
}  
[/AS]
