# Tween class problem

**URL:** https://forum.kirupa.com/t/tween-class-problem/236485
**Category:** Uncategorized
**Created:** [August 21, 2007, 12:00pm UTC](https://forum.kirupa.com/t/tween-class-problem/236485 "2007-08-21T12:00:29Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Merenra](https://avatars.discourse-cdn.com/v4/letter/m/a9adbd/32.png) [@Merenra](https://forum.kirupa.com/u/Merenra)
#### Post date: [August 21, 2007, 12:00pm UTC](https://forum.kirupa.com/t/tween-class-problem/236485/1 "2007-08-21T12:00:29Z")

</div>

Hi all,  
I have the following code:

import mx.transitions.Tween;  
import mx.transitions.easing.\*;

var xG:Tween = new Tween (gg,"\_y", Elastic.easeOut, 0, 400, 3, true);  
var xR:Tween = new Tween (rr, “\_y”, Elastic.easeOut, 0, 400, 3, true);  
var xA:Tween = new Tween (aa, “\_y”, Elastic.easeOut, 0, 400, 3, true);  
var xD:Tween = new Tween (dd, “\_y”, Elastic.easeOut, 0, 400, 3, true);

It makes, that the mc with the instance names: “gg”, “rr” etc are “jumping” from the top. The problem ist that they are jumping all simultanesly (at the same time). And I will that first starts the first mc (gg) ,when it stops the second one (rr) start, then the third and etc.One after the other.  
I already try it with setInterval, tween.stop, but it doesn’t change a lot…  
Thanks in advance 🙂  
Greetings,  
Merenra
