# Scaling a circle w/ as3

**URL:** https://forum.kirupa.com/t/scaling-a-circle-w-as3/322323
**Category:** flash
**Created:** [May 18, 2011, 4:14am UTC](https://forum.kirupa.com/t/scaling-a-circle-w-as3/322323 "2011-05-18T04:14:04Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![kade119](https://avatars.discourse-cdn.com/v4/letter/k/5f9b8f/32.png) [@kade119](https://forum.kirupa.com/u/kade119)
#### Post date: [May 18, 2011, 4:14am UTC](https://forum.kirupa.com/t/scaling-a-circle-w-as3/322323/1 "2011-05-18T04:14:04Z")

</div>

I got the circle to scale up but need assistance to have the circle scale down after x amount of time. Would appreciate any help

```auto
import flash.display.MovieClip;
import fl.transitions.Tween;
import fl.motion.Tweenables;
import fl.transitions.easing.Strong;
import fl.transitions.easing.None;

var tweenScaleX : Tween;
var tweenScaleY : Tween;

function grow(mc : MovieClip) : void
{
    tweenScaleX = new Tween(mc, Tweenables.SCALE_X, None.easeNone, mc.scaleX, 3, 5, true);
    tweenScaleY = new Tween(mc, Tweenables.SCALE_Y, None.easeNone, mc.scaleY, 3, 5, true); 
}

grow(myCircle);

```
