Gracias por tu ayuda Capt.Mahou

desconocia ese parametro.
He puesto la linea que me pasaste y te comento que me funciona a medias

Ahora sale la fecha y el titulo bien, pero el cuerpo esta mas separado..¿?
Este es el codigo de actionscript:
noticia1 es el textfield
noticia1.html = true;
noticia1.wordWrap = true;
noticia1.multiline = true;
var mi_CSS = new TextField.StyleSheet();
mi_CSS.load("estilos.css");
noticia1.styleSheet = mi_CSS;
miXML = new XML();
miXML.onLoad = function(succes) {
if (succes) {
noticia1.htmlText = miXML;
} else {
noticia1.text = "No se pudo cargar el archivo ";
}
};
miXML.ignoreWhite = true;
miXML.load("noticia1.txt");
Este el del CSS
fecha{
font-family: Arial,Helvetica,sans-serif;
font-size: 12px;
font-weight: bold;
color: #FF8908;
}
titulo {
font-family: Arial,Helvetica,sans-serif;
font-size: 12px;
font-weight: bold;
color: #424242;
}
cuerpo {
font-family: Arial,Helvetica,sans-serif;
font-size: 10px;
font-weight: regular;
color: #424242;
}
a {
font-family: Arial,Helvetica,sans-serif;
color: #760000;
font-size: 10px;
text-decoration:underline;
}
y el XML es el mismo del otro post
Un saludo y gracias de antemano