
Код:
var tf:TextField=this.createTextField("tf",0,0,0,100,20);
tf.text="blabla";
tf.background=true;
tf.backgroundColor=0x666666;
var n=255;
function setTextColor(){
tf.textColor=n<<16 | n<<8 | n;
if(!n) clearInterval(id);
n--;
}
var id=setInterval(this,"setTextColor",10);