Salut, j'aimerais parser un fichier XML en flash :
<news>
<fra>Coucou</fra>
<eng>Hello</eng>
</news>
<news>
<fra>Comment ca va ?</fra>
<eng>How are you ?</eng>
</news>
J'aimerais récupérer "Coucou", "Hello", "Comment ca va?" et "How are you?"
Voici mon code:
var oXml = new XML();
oXML.load("fichier.xml" );
mais je ne sais pas comment accéder à ces mots... Je sais qu'il y a la méthode "attribute" mais dans mon cas il n'y a pas d'atribut...
qqn a une idée ?
merci !