Le agradezco enormemente su ayuda.
Código:
/******************************************/ var numAnuncios; var imgPath; /*******************************************/ var xmlVars = new XML(); xmlVars.ignoreWhite = true; xmlVars.onLoad = function (sucess) { if (sucess) { var auxLink; var auxImg; _root.numAnuncios = Number(this.firstChild.attributes.cant); _root.imgPath = this.firstChild.attributes.imgPath; var nodos = this.firstChild.childNodes; for (i = 0; i < nodos.length; i++) { //si es anuncio if (nodos[i].nodeName == "anuncio") { //link auxLink = nodos[i].attributes.link; //imgName auxImg = _root.imgPath + nodos[i].attributes.imgName; trace(auxImg); newAnuncio = "anuncio"+i; _root.createEmptyMovieClip(newAnuncio,i); _root[newAnuncio].link = auxLink; _root[newAnuncio].loadMovie(auxImg); _root[newAnuncio].onRelease = function() { getURL(this.link); } } } } else { trace("error"); } } xmlVars.load("anuncios.xml");