Bonjour,
je n'ai aucun problème pour récupérer les infos du 1er noeud xml

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
this.document=new XML(); 
this.document.ignoreWhite=true;	
this.document.load("mesInfos.xml");
this.stop();
this.document.onLoad=function(){ 
_root.titre.htmlText = this.firstChild.childNodes[0].attributes.titre;
}
Mais comment faire pour sélectionner le noeud nommé "noeud4"
Merci d'avance!