abre un nuevo documento de Flash 8
y prueba este código:
Código:
//-------------->
var random_entre:Function = function(minimo:Number,maximo:Number):Number{
return Math.round(Math.random()*(maximo-minimo))+minimo;
}
//-------------->
var campo:TextField = this.createTextField('campo',this.getNextHighestDepth(),50,50,24,24);
var tiempo_inicio:Number = getTimer();
var tiempo:Number = 5; //segundos
this.onEnterFrame=function():Void{
campo.text = String.fromCharCode(random_entre(65,90));
if(getTimer()-tiempo_inicio>=tiempo*1000){
campo.text='C';
delete this.onEnterFrame;
}
}
//-------------->
stop();
esta es una de las maneras :D