Cara, muito bem pensado hehehehe... n sei como não pensei nisso antes Bom... seguindo o que você falou anteriormente deixei o codigo assim e não funcionou =( //fonte inicio
var fonte:TextFormat = new TextFormat();
fonte.font = 'fonte1';
fonte.size = 18;
txt_dinamico.embedFonts = true;
txt_dinamico.setTextFormat(fonte);
//fonte fim
texto = "Pregador - Jornalista\nConferencista";
Digita(_root.txt, texto, 75);
function Digita(path, _str, tempo) {
i = 0;
path.text = "";
ID = setInterval(type, tempo, _str, path);
function type(_str, path) {
larg = _str.length;
path.text += _str.charAt(i);
if (i == larg-1) {
clearInterval(ID);
}
i++;
}
}