hola, estoy recien empesando en flash y tengo algunas consultas que realizarles a los mas expertos.
Desde Flash me comunico con una pagina php que me devuelve contenido XML, la estructura que recivo es la siguiente:
Código HTML:
<streaming>
<artista>Simple Minds</artista>
<cancion>She's A River</cancion>
<ultimos id="10">
<reg_hora>05:16</reg_hora>
<reg_artista>Simple Minds</reg_artista>
<reg_cancion>She's A River</reg_cancion>
</ultimos>
<ultimos id="9">
<reg_hora>05:12</reg_hora>
<reg_artista>Cult</reg_artista>
<reg_cancion>She Sells Sanctuary</reg_cancion>
</ultimos>
<ultimos id="8">
<reg_hora>04:59</reg_hora>
<reg_artista>Uriah Heep</reg_artista>
<reg_cancion>Paradise, The Spell</reg_cancion>
</ultimos>
</streaming>
En flash leo ese contenido pero solo puedo leer los dos primeros datos (<artista> y <cancion>) de la siguiente forma:
Código HTML:
artista.htmlText = this.firstChild.childNodes[0].firstChild;
cancion.htmlText = this.firstChild.childNodes[1].firstChild;
pero no se como leer los datos que estan bajo la estructura
Código HTML:
<ultimos id="xx">
<reg_hora>xx:xx</reg_hora>
<reg_artista>xxxxxxx</reg_artista>
<reg_cancion>xxxxxxx</reg_cancion>
</ultimos>
No se de que forma leerlo.
Alguien me puede indicar como hacerlo o darme alguna pagina donde pueda ver un ejemplo??.
Saludos