Timer in tween class!

Hello all,

Know how to add a timer after the first movement in the follwing code…

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

var xPosT:Tween = new Tween(mySymbol, “_x”, Bounce.easeOut, 0, Stage.width, 3, true);
[COLOR=“Red”]// add a timer here… 5 milliseconds after the first movement has started… the next will start… [/COLOR]
var xPosT:Tween = new Tween(mySymbol2, “_x”, Bounce.easeOut, 0, Stage.width, 3, true);

Thanks!

neuhaus3000