hola
no entiendo bien lo que pretendes, será cambiar el orden de los datos que vienen del xml?
has intentado esto?
Código actionscript:
Ver originalfecha1 = noticias_xml.firstChild.childNodes[2].firstChild.firstChild.nodeValue;
//Se accede al segundo hijo de elemento [noticia] y se recupera el valor del primer elemento de [mensaje]
mensaje1 = noticias_xml.firstChild.childNodes[2].firstChild.nextSibling.firstChild.nodeValue
fecha2 = noticias_xml.firstChild.childNodes[1].firstChild.firstChild.nodeValue;
//Se accede al segundo hijo de elemento [noticia] y se recupera el valor del primer elemento de [mensaje]
mensaje2 = noticias_xml.firstChild.childNodes[1].firstChild.nextSibling.firstChild.nodeValue
fecha3 = noticias_xml.firstChild.childNodes[0].firstChild.firstChild.nodeValue;
//Se accede al segundo hijo de elemento [noticia] y se recupera el valor del primer elemento de [mensaje]
mensaje3 = noticias_xml.firstChild.childNodes[0].firstChild.nextSibling.firstChild.nodeValue
//Se accede al último hijo de elemento [noticia] y se recupera el valor del primer elemento de [imagen]
flyer1 = noticias_xml.firstChild.childNodes[2].lastChild.firstChild.nodeValue
flyer2 = noticias_xml.firstChild.childNodes[1].lastChild.firstChild.nodeValue
flyer3 = noticias_xml.firstChild.childNodes[0].lastChild.firstChild.nodeValue
comentas
saludos