Hola, primero que nada los felicito por este excelente portal.

Mi problema es el siguiente:

Lo que quiero hacer es un menu en flash el cual carga unos datos mediante un XML. El menu se basa en que muestra resultados de partidos de futbol, el cual debe de cargar la imagen del equipo1 , equipo2 ; asi como los nombres y el resultado .
Mi problema es que no me carga nada de lo que tengo puesto en mi archivo xml, espero me puedan ayudar.

Codigo en el XML: En esta parte lo intente poner de las 2 maneras como se ve en el codigo del XML

<?xml version="1.0" encoding="utf-8"?>
<noticias>
<noticia>
<nom1>Tottenham</nom1>
<marc1>0</marc1>
<img1>Tottenham.jpg</img1>
<nom2>Villarreal</nom2>
<marc2>0</marc2>
<img2>Villarreal.jpg</img2>
</noticia>
<noticia>
<img1= "Tottenham.jpg" marc1= "3" nom1= "Tottenham"/>;
<img2= "Villarreal.jpg" marc2= "2" nom2= "Villarreal;"/>;
</noticia>
</noticias>

Codigo en el Flash:

System.useCodepage = true;

var noticias_xml:XML;
var _indice:Number;
var nom1:String;
var nom2:String;
var marc1:Number;
var marc2:Number;
var img1:String;
var img2:String;

function cargarDatos(_indice:Number) {
//Accediendo a los nombres de los equipos.
nom1 = noticias_xml.firstChild.childNodes[_indice].firstChild.firstChild.nodeValue;
nom2 = noticias_xml.firstChild.childNodes[_indice].firstChild.firstChild.nodeValue;
//Accediendo a los resultados de los equipos
marc1.Number = noticias_xml.firstChild.childNodes[_indice].firstChild.nextSibling.firstChild.nodeValue;
marc2.Number = noticias_xml.firstChild.childNodes[_indice].firstChild.nextSibling.firstChild.nodeValue;
//Accediendo a las imagenes de los equipos.
img1 = noticias_xml.firstChild.childNodes[_indice].lastChild.firstChild.nodeValue;
img2 = noticias_xml.firstChild.childNodes[_indice].lastChild.firstChild.nodeValue;
//Mostrando nombres de equipos
_root.nom1.htmlText;
_root.nom2.htmlText;
//Mostrando marcador entre ambos equipos
_root.marc1.Number = "";
_root.marc2.Number = "";
//Cargado las imagenes JPG externas de los equipos
_root.img1.loadMovie();
_root.img2.loadMovie();
}
sig_btn.onPress = function() {
if (noticias_xml.firstChild.childNodes[indice+1] != null) {
indice++;
cargarDatos(_indice);
}
};

ant_btn.onPress = function() {
if (noticias_xml.firstChild.childNodes[indice-1] != null) {
indice--;
cargarDatos(indice);
}
};

indice = 0;
noticias_xml = new XML();
noticias_xml.ignoreWhite = true;
noticias_xml.load("noticias.xml");
noticias_xml.onLoad = function() {
cargarDatos(indice);
};
Aqui les anexo los archivos para que lo vean. Ojala me puedan ayudar, soy nuevo en esto , por tal motivo aun no logro hacerlo funcionar.

Archivos:
http://files.filefront.com/jornada1xmlrar/;12674362;/fileinfo.html

Gracias de antemano y espero su ayuda.