XML et flash

XML et flash - Flash/ActionScript - Programmation

Marsh Posté le 24-01-2008 à 23:11:31    

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 !
 

Reply

Marsh Posté le 24-01-2008 à 23:11:31   

Reply

Marsh Posté le 25-01-2008 à 04:21:35    

Oue un peu leger le code quand meme :/
Tiré de l'aide de Flash et rassemblé en un code

Code :
  1. // Create a new XML object.
  2. var flooring:XML = new XML();
  3. // Set the ignoreWhite property to true (default value is false).
  4. flooring.ignoreWhite = true;
  5. // After loading is complete, trace the XML object.
  6. flooring.onLoad = function(success) {
  7.      if (success) {
  8.         if (this.firstChild.firstChild.nodeName == "news" ) {
  9.            trace(this.firstChild.firstChild.nodeValue)
  10.           }
  11.      }
  12. };
  13. // Load the XML into the flooring object.
  14. flooring.load("flooring.xml" );


---------------
Jeu de simulation Boursière - Version BETA - https://www.facebook.com/wildstocks
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed