Twenn Class problem

when calling one of the methods of the tween class there is a parameter for a callBack function. The documentation says that the callBack is called after the tween has finished, but whenever I use a callBack it is called as soon as the tween is started. Anyone know how to fix this?

Use onMotionFinished

From the Help files:

var myTween:Tween = new Tween(img1_mc, “_x”, mx.transitions.easing.Strong.easeOut,0, 300, 3, true);
myTween.onMotionFinished = function() {
//Your Function Goes Here;
};

skyo sucks monkey balls!