Tween class problem

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 :slight_smile:
Greetings,
Merenra