Hola ,
prueba esto:
Código PHP:
Texto._visible=false;
Texto.html = true;
Texto.wordWrap = true;
miEstilo.onLoad = function(cargado:Boolean):Void {
if (cargado) {
Texto.styleSheet = miEstilo;
Texto._visible=true;
Texto.htmlText = texto; //variable en el texto externo
} else {
trace("Error cargando el CSS.");
}
};
miEstilo.load("mi.css");
Sería tener el texto invisible, hasta que se cargue el estilo.
Debería de funcionar.
Salu2 ;)