re
<?xml version="1.0" encoding="UFT-8"?>
<root>
<contact nom="lolo" tel="3569453"/>
<contact nom="Mafassure" tel="123456"/>
<contact nom="Titi035" tel="78910"/>
</root>
news_xml = new XML();
news_xml.ignoreWhite = true;
// chargement du XML
news_xml.load("news.xml");
// traitement fichier xml
news_xml.onLoad = function() {
for (var i:Number = 0; i<news_xml.firstChild.childNodes.length; i++) {
trace("nom : " + news_xml.firstChild.childNodes[i].attributes.nom);
trace("tél : " + news_xml.firstChild.childNodes[i].attributes.tel);
}
};