I've preloaded images from xml into an array named arr. But I'm having problems with loadClip and getting the string from the array. So it doesn't load the image in the box.
Example:
arr[0] = "images/photo1.jpg";
var mcLoader:MovieClipLoader = new MovieClipLoader();
mcLoader.addListener(this);
mcLoader.loadClip(arr[0], box_mc.loader_mc);
Any thoughts on how to work around this?