Problema di percorsi...
Così dovrebbe andare:

codice:
MovieClip.prototype.rettDesMove = function(pos:Number, alt:Number) {
	var path:MovieClip = this;
	var tx = new Tween(path, "_x", Strong.easeOut, path._x, pos, 30, false);
	tx.onMotionFinished = function() {
		var ry = new Tween(path, "_height", Strong.easeOut, path._height, alt, 30, false);
	};
};