Quote Originally Posted by whitelynx_nivla View Post
yes I did
I also chage the 500 to 5000 so that I can see the movement more easy.
5000mili seconds means 5 seconds for the movement right?

Also I tried to move in Y cordinate
so I wrote
var myTweenX:Tween = new Tween(car_mc, "x", Strong.easeIn, 0, 100, 5000, false);
var myTweenY:Tween = new Tween(car_mc, "y", Strong.easeIn, 100, 200, 5000, false);

I aslo put stop(); at the end of the script, because there's a simple timeline tween animation for the prolog.
I dont want the prolog to be looping around each time the time line ends.
Does it effect the code?
Just as a note, Tweens created within the actionscript are 'asynchronous' which means they are not affected by the timeline.