Código :
Error opening URL "file:///Mac/Users/Arkimedia/Mauricio/Tery%20Vazquez/www.teryvazuqez.com/undefined"
este es el inicio de mi codigo dentro del .fla GALERIA en el primer frame donde llama al XML "images.xml"
Código :
function initGallery() { function loadXML(loaded) { if (loaded) { xmlNode = this.firstChild; total = xmlNode.childNodes.length; for (i = 0; i < total; i++) { _root.small_image[i] = xmlNode.childNodes[i].childNodes[1].firstChild.nodeValue; _root.big_image[i] = xmlNode.childNodes[i].childNodes[0].firstChild.nodeValue; _root.description[i] = xmlNode.childNodes[i].childNodes[2].firstChild.nodeValue; if (i == 0) { _root.loadGImage(_root.description[i], _root.big_image[i]); } // end if ++_root.total_images; } // end of for createSmall(); _root.downloadButton._visible = true; } else { content = "file not loaded!"; } // end else if } // End of the function xmlData = new XML(); xmlData.ignoreWhite = true; xmlData.onLoad = loadXML; if (_root.xml_file == undefined) { _root.xml_file = "images.xml"; } // end if xmlData.load(xml_file); }
este es el CODIGO que coloco al BOTON que llama hacia el "MC_VACIO" con el nombre de instancia de "CONTENEDOR"
Código :
on (release) { loadMovie ("galeria.swf", _root.contenedor); }
Me descarga todo next, prev, la barra y eso, PERO, las IMAGENES NO.
llevo varios dias buscandole el error pero creo que ya me cegue y no doy con el. Espero puedan ayudarme y de antemano graicas por su tiempo y respuesta. Saludos.