Hi,
For example if i use caurina tweening class in as3 and i tween my circle, i want to apply multiple tweens, but each tween stage will come after 1 second, here is my code:
mc.addEventListener(MouseEvent.MOUSE_OVER, function() {
Tweener.addTween(circle, {x:100, y:100, time:1, transition:"easeout"})
Tweener.addTween(circle, {x:150, y:150, time:1, delay:0.1, transition:"easeout"})
});
but my tween second tween is not delaying, can anyone help me with this?
and how could i loop these different tween stages?