Tween function Advice needed?

I’m working on an application where several object have to be tweened with similar animation. I have this part of code:


var moveTween:Tween;

function moveObj(obj:MovieClip, startValue:Number, endValue:Number, duration:Number):void {
    moveTween = new Tween(obj, "x", null, startValue, ednValue, duration, true);
}

I start the function at the same time for several object, and it’s work, but there is a bugs very often. For exsample the animation stops befor it is finished.
Could it be because of the calling the new Tween for the moveTween variable which is still in progress?

My experiments show that in Enternet Explorer 6 and 7 there is no such a problem (or at least i didn’t notice some).

Did someone had similar problem and can you give some advice?
Thanks