Another XML+preloader question

In my current slideshow I have it so it loads up each image. But I need it to preload all images first then start the slideshow.

Is this possible?

Here is the AS for my preloader:


//////////////////Preloader + Other Functions//////////////////
p = 0;
this.onEnterFrame = function() {
	filesize = picture.getBytesTotal();
	loaded = picture.getBytesLoaded();
	preloader._visible = true;
	if (loaded != filesize) {
		preloader.preload_bar._xscale = 100*loaded/filesize;
	} else {
		preloader._visible = false;
		if (picture._alpha<100) {
			picture._alpha += 2;
		}
	}
};

I think that’s it if other stuff is needed just let me know. I’m basically using the slideshow and thumbnail tutorial by kirupa. It pulls in information via “images.xml”. So just load all the images/info from the xml file first then start the slideshow.

Any advice or help would be great,

Thanks!!