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>
Código HTML:
artista.htmlText = this.firstChild.childNodes[0].firstChild; cancion.htmlText = this.firstChild.childNodes[1].firstChild;
Código HTML:
<ultimos id="xx"> <reg_hora>xx:xx</reg_hora> <reg_artista>xxxxxxx</reg_artista> <reg_cancion>xxxxxxx</reg_cancion> </ultimos>
Alguien me puede indicar como hacerlo o darme alguna pagina donde pueda ver un ejemplo??.
Saludos