hi all,
ive created a slideshow in flash that works perfectly locally
but when i uploaded it the images do not show.
i have a forward (loadButton) and back (unloadButton)
heres the script in the main timeline
var photo = 0;
checkStatus();
function loadSWF() {
photo++;
holder.loadMovie("art" + photo + ".jpg");
checkStatus ();
}
function unloadSWF() {
photo--;
holder.loadMovie("art" + photo + ".jpg");
checkStatus ();
}
function checkStatus(){
if(photo <= 1){_root.unloadButton._visible=false}
else {_root.unloadButton._visible=true}
if(photo == 48) {_root.loadButton._visible=false}
else {_root.loadButton._visible=true}
}
the images are loaded into a holder movie clip..
ive put the images in the same folder as the .swf file so it should work
any ideas?
andy


Reply With Quote

Bookmarks