Apply css style to a xml data in Flash 2004

Hello,

I`d like to know if it is posible to apply css style to a XML data in Flash 2004.

My code:

System.useCodepage = true;
var meuXML:XML = new XML();
meuXML.load(“iniciando1_xml_css.xml”);
meuXML.ignoreWhite = true;
meuXML.onLoad = function(){
var format = new TextField.StyleSheet();
var path = “estilo1.css”
[color=red]var one = this.childNodes[0].childNodes[0].attributes.id;[/color]
format.load(path);
format.onLoad = function(loaded) {
if (loaded) {
texto1.styleSheet = format;
texto1.text = one;
} else {
output.text = “Error loading CSS file!”;
}
}
}

Now I want to do something like this to apply the CSS:
[color=#ff0000]var one = “<p class=‘negroB20’>this.childNodes[0].childNodes[0].attributes.id</p>”;[/color]
But it will not display the content of the node. It will display [color=#ff0000]this.childNodes[0].childNodes[0].attributes.id [/color][color=black]like an expresion.[/color]
What should i do?

Thanks :stuck_out_tongue:

Gianna