I’ve followed the kirupa tutorial for making the xml preloading slideshow. However, I want to preload all the xml images BEFORE the slideshow starts. I’ve cannibalized the preloading code and it seems like it should work…but it doesn’t. so here it is:
stop();
//////////////////////////////////
function loadXML(loaded){
if(loaded){
xmlNode = this.firstChild;
image = [];
total = xmlNode.childNodes.length;
for(i=0; i<total; i++){
image* = xmlNode.childNodes*.childNodes[0].firstChild.nodeValue;
}
loadImages();
gotoAndPlay("autoslide");
} else {
content = "file not loaded!";
}
}
xmlData = new XML();
xmlData.ignoreWhite = true;
xmlData.load("test.xml");
xmlData.onLoad = loadXML;
picture._alpha = 0;
this.onEnterFrame = function() {
filesize = picture.getBytesTotal();
loaded = picture.getBytesLoaded();
}
function loadImage(p) {
if (loaded == filesize) {
picture._alpha = 0;
picture.loadMovie(image[p], 1);
}
}
function loadImages(){
for(j=0; j<total; j++){
loadImage(j);
}
}
Please help!