Codice PHP:
miocampoditesto.textColor = 0xFF0000;
e se vuoi esagerare una cosa del tipo:
Codice PHP:
var i:Number = 0;
var tf:TextField =this.createTextField("tf", this.getNextHighestDepth(), 10, 10, 100, 22);
tf.text= 'Hello';
function changeColor(){
if (i==0) {
i++;
this.textColor = 0x00FF00;
}else if(i==1){
i++;
this.textColor = 0xFF0000;
}else if(i==2){
i++;
this.textColor = 0x552288;
}else if(i==3){
i++;
this.textColor = 0x7865f2;
}else if(i==4){
i=0;
this.textColor = 0x162ff6;
}
}
setInterval(function(){changeColor.call(tf);}, 500);