плавно

Код:
clr = function (val) {
val %= 255;
var f = Math.floor(val/85);
val = 3*(val%85);
return val*(1 << 8*((2*f)%3))+(255-val)*(1 << 8*((2*f+1)%3));
};
this.createTextField('_txt', 0, 0, 0, 0, 0);
_txt.autoSize = true;
_txt.text = 'название';
var c=0;
setInterval(function () {
_txt.textColor = clr(c++);
}, 40);
текст как мувик:
см. Color.setRGB ,Color.setTransform ..