para hacer la referencia al Objeto principal del XML desde Flash no se usa el nombre del nodo del archivo XML si no el Nombre del objeto que creaste en Flash
algo asi
Código:
elxml= new XML();
elxml.load("vinculos.xml");
elxml.ignoreWhite = true;
elxml.onLoad = crear;
function crear() {
barra.caja1 = elxml.firstChild.childNodes[1].attributes.vinc;
barra.caja2 = elxml.firstChild.childNodes[2].attributes.vinc;
barra.caja3 = elxml.firstChild.childNodes[3].attributes.vinc;
}
o la referencia this siempre y cuando estes dentro de la funcion que carga
Código:
elxml= new XML();
elxml.load("vinculos.xml");
elxml.ignoreWhite = true;
elxml.onLoad = crear;
function crear() {
barra.caja1 = this.firstChild.childNodes[1].attributes.vinc;
barra.caja2 = this.firstChild.childNodes[2].attributes.vinc;
barra.caja3 = this.firstChild.childNodes[3].attributes.vinc;
}
Saludos!!