Tween Class

Hello All,

I am currantly working on a project using the tweening class, where i want a movieclip to go up to a position then back to its originalo position in one motion. My problem is that that it tweens to the correct end position but does not tween up to the first position, to then drop to its end position. Here is my code:

posY =this._y;

function tofront(test) {
var tw:Tween = new Tween(test, “_y”, Elastic.easeOut, posY, 361, 1.6, true);
var tw:Tween = new Tween(test, “_y”, Elastic.easeOut, 0, 261, 1.6, true);
}

Any help would be most grateful

Cheers

Shram