per la rotazione possiamo implementare il tuo script così
codice:
import mx.transitions.*;
import mx.transitions.easing.*;
MovieClip.prototype.muovibarre = function(__y, __r) {
var mov:Object = new Tween(this, "_y", Regular.easeOut, this._y, __y, 0.5, true);
var rot:Object = new Tween(this, "_rotation", Regular.easeOut, this._y, __r, 0.5, true);
}
_root.barrasu.muovibarre(298, 180);
_root.barragiu.muovibarre(308, 270);
per quanto riguarda il cambio di colore, la cosa si complica un attimo... se vuoi modificare un colore "pieno" dovrebbe essere abbastanza semplice implementare questo codice... ma è tutto da vedere...