Yes but, the images and the linked pages (if any) would need to be represented by names in a numbered sequence.
Say you had a directory called 'images' with ten images in it numbered 0.jpg to 9.jpg, you could do this:
Code:
var fadeimages=new Array();
for (var i_tem = 0; i_tem < 10; i_tem++)
fadeimages[i_tem]=["images/"+i_tem+".jpg", "", ""] //plain image syntax
Beyond that, you would need to have a server side language. Currently (as far as I know) only PHP and asp/VBscript methods have been worked out for this (pulling a list of images and/or files from a directory). For this slide show script, some modifications would need to be done to one of these server side scripts and using links with the images in the slide show (if desired) would make things more complicated.
Bookmarks