I found the script which will load a random picture on each refresh of the page:
filename = [“a.swf”, “b.swf”, “c.swf”];
path = “http://areaofpictures/images/”;
i = filename.length;
k = Math.floor(Math.random()*i);
loadMovie(path+filename[k], bgTarget);
OK, this is good if I just have 1 picture to show on a page, but does anyone know how to modify this code to switch the image swf every 30 seconds without the need of a refresh?
:party: