tienen que embeber una fuente aqui un ejemplo (aqui se le nombro "fuente" ) y colocar esto en un frame vacio y ya.
Código:
var mi_fmt:TextFormat = new TextFormat();
mi_fmt.font = "fuente";
this.createTextField("mi_txt",this.getNextHighestDepth(),400,200,200,200);
mi_txt.embedFonts = true;
mi_txt.text = "Hola mundo";
mi_txt.setTextFormat(mi_fmt);
this.onEnterFrame = function() {
mi_txt._alpha -= (mi_txt._alpha-(0))*0.03;
if (Math.round(mi_txt.alpha) == 0) {
trace("Fin efecto");
delete this.onEnterFrame;
}
};
si tienen dudas vayan a flash y aprieten f1 y en el buscador escriban principalmente las propiedades que estan en azul , lean y aprendan con el ejemplo que viene en la ayuda , despues de eso si tienen dudas vienen y preguntan.