# Quick ActionScript Question for a Newbie

**URL:** https://forum.kirupa.com/t/quick-actionscript-question-for-a-newbie/123850
**Category:** Uncategorized
**Created:** [September 28, 2004, 12:47am UTC](https://forum.kirupa.com/t/quick-actionscript-question-for-a-newbie/123850 "2004-09-28T00:47:19Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![ChaoticGood](https://avatars.discourse-cdn.com/v4/letter/c/df788c/32.png) [@ChaoticGood](https://forum.kirupa.com/u/ChaoticGood)
#### Post date: [September 28, 2004, 12:47am UTC](https://forum.kirupa.com/t/quick-actionscript-question-for-a-newbie/123850/1 "2004-09-28T00:47:19Z")

</div>

Greetings,

I have a movie clip I am moving from the left side of the stage to the right using AS, however I can’t seem to get the clip to scale larger or stop.

I was able to succesfully get the clip to move, so I am wonderging if anyone can help me stop the MC and gradually make the clip larger.

Here is the AS as it stands now -

_onClipEvent (load) {  
\_x=24;  
\_y=111.7;  
\_xscale=\_yscale=0;  
\_alpha = 10;  
}  
onClipEvent (enterFrame) {  
\_x=\_x+3;  
\_xscale=\_yscale=+100  
\_xscale=\_yscale=+100;  
\_alpha = \_alpha+2;  
}  
onClipEvent (data) {  
stop();  
}_

All help is greatly appreciated.

Best,  
CG
