Molto strano.
Facendo copia incolla del tuo codice, dopo aver aggiunto le importazioni delle classi [in rosso], tutto funziona correttamente.

codice:
import mx.transitions.*;
import mx.transitions.easign.*;
MovieClip.prototype.barraBotMove = function(pos:Number, larg:Number) {
	var path:MovieClip = this;
	var ty:Tween = new Tween(path, "_y", Strong.easeOut, path._y, pos, 30, false);
	ty.onMotionFinished = function() {
		trace(larg);
		var rx = new Tween(path, "_width", Strong.easeOut, path._width, larg, 30, false);
	};
};
mioClip.barraBotMove(0, 500);