# Using action scripted tweening causing pain

**URL:** https://forum.kirupa.com/t/using-action-scripted-tweening-causing-pain/171119
**Category:** Uncategorized
**Created:** [December 1, 2005, 11:07pm UTC](https://forum.kirupa.com/t/using-action-scripted-tweening-causing-pain/171119 "2005-12-01T23:07:46Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![kingofnukes](https://avatars.discourse-cdn.com/v4/letter/k/9d8465/32.png) [@kingofnukes](https://forum.kirupa.com/u/kingofnukes)
#### Post date: [December 1, 2005, 11:07pm UTC](https://forum.kirupa.com/t/using-action-scripted-tweening-causing-pain/171119/1 "2005-12-01T23:07:46Z")

</div>

I started making a menu system the other day and It started out with a scrollpane as the method for scrollin through it, but the scroolpane cause problems with text scrollers and As so I dumped the plan. Now I’m trying to use TheCanadian’s tutorial to make a nice ActionScripted tween to move the Mc to the spots I want. Unfortunately, I’m having trouble understanding it enough to modify it to my specifications.

My code is:

```auto
 on (release) {
 import mx.transitions.Tween;
 import mx.transitions.easing.*;
 var xPosT:Tween = new Tween(stats, "_y", none.easeOut, 0, Stage.height, 0, false);
 }
 

```

Any help would be appreciated.
