Tween classe problemo

Hello, not to hot with AS:s. Could someone tell me how to get this to work?

Basically i want the file to goto frame 2 of my main timeline once the tween has finished.

import mx.transitions.Tween;
import mx.transitions.easing.*;
var xPosT:Tween = new Tween(kText, “_x”, Elastic.easeOut, 0, Stage.width / 2, 1.5, true);
xScaleT.onMotionFinished = function() {

_root.gotoAndStop(2);

};

Cheers.