Si pones el código completo te podemos guiar mejor, pero en teoría sería asignar los datos cargados al campo de texto dinámico, sólo después de cargar el css.
o sea esto(como lo tengas tu)
Código PHP:
Texto.htmlText = tuvariable;
sólo aquí:
Código PHP:
miEstilo.onLoad = function(cargado:Boolean):Void {
if (cargado) {
Texto.styleSheet = miEstilo;
//SOLO ASIGNAS TEXTO A CAMPO UNA VEZ CARGADA LA CSS
Texto.htmlText = newsText;
} else {
trace("Error cargando el CSS.");
}
};
Salu2 , encantado de ayudar