Código :
//Creamos el Campo dinamico createTextField("_texto", 6, 100, 160, 0, 0); _texto0.autoSize = false; _texto0.border = false; _texto0.type = "dinamic"; //----------------------------- //Formato del Campo formato = new TextFormat(); formato.color = 0x000000; formato.bold = true; formato.size = 25; formato.font = "Georgia"; //----------------------------- //Esto es el Efectucho.. =P b =0; cadenita = "La Materia y sus Propiedades"; setea = function () { if (b<=cadenita.length) { _texto0.text = cadenita.substr(0, b++); _texto0.setTextFormat(formato); } else { clearInterval(tempo); } }; tempo = setInterval(setea,50);//velocidad,+ numero, menos velocidad