# Simple blummin tween!

**URL:** https://forum.kirupa.com/t/simple-blummin-tween/289141
**Category:** flash
**Created:** [May 26, 2009, 8:56pm UTC](https://forum.kirupa.com/t/simple-blummin-tween/289141 "2009-05-26T20:56:49Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![tigeralex](https://avatars.discourse-cdn.com/v4/letter/t/59ef9b/32.png) [@tigeralex](https://forum.kirupa.com/u/tigeralex)
#### Post date: [May 26, 2009, 8:56pm UTC](https://forum.kirupa.com/t/simple-blummin-tween/289141/1 "2009-05-26T20:56:49Z")

</div>

Hey Guys,

I’m new into AS3 and I want a movieclip to go from 100% scale to 10% scale and fade out. It needs to get smaller with it’s holding point in the centre, ie not shrinking to a corner.

Can anyone help? This is doing my head in. I have

```auto

function fadeIn(event:MouseEvent):void
{
    inTween = new Tween(mainContent.showreelMain,"alpha",None.easeNone,1,0,30,false);
    inTween = new Tween(mainContent.showreelMain,"width",None.easeNone,300,10,30,false);
    inTween = new Tween(mainContent.showreelMain,"height",None.easeNone,200,10,30,false);
}

```

at the mo.

Alex :sen:
