Tween fading issues

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



function nxtFrame ()
{
    var txtTween = new Tween(infoMC, "_alpha", tweenStyle, 100, 0, 10);
    txtTween.onMotionFinished = function (){
        
        infoMC.infoMask.gotoAndStop (1);
        infoMC.nextFrame ();
        new Tween(infoMC, "_alpha", tweenStyle, 0, 100, 10);
        infoMC.infoMask.play ();
    }
}

Hiya

Basically I have a movie clip that when I click ‘next’, it fades out the current text, moves on a frame in infoMC and then fades back up.

When I trace, everything is working ok, up until the fadeup/mask play, and i’ve absolutely no idea why this is? Is there anything wrong with the above code?