No, they go in the folder of the page that is using them* and the array's image_controls=1 property must be set:
Code:
var slides=[]; //FIRST SLIDESHOW
//configure the below images and descriptions to your own.
slides[0] = ["photo1.jpg", ""];
slides[1] = ["photo2.jpg", ""];
slides[2] = ["photo3.jpg", ""];
slides[3] = ["photo4.jpg", ""];
slides[4] = ["photo5.jpg", ""];
slides.delay=3000;
slides.no_descriptions=1;
slides.image_controls=1;
And, the script's global (from the demo):
Code:
//If using image buttons as controls, Set image buttons' image preload here true
//(use false for no preloading and for when using no image buttons as controls):
var preload_ctrl_images=true;
must be set to true as shown.
*Note: The image files can go anywhere but, if they are not in the same folder as the page that is using them, configure their absolute paths here (from the demo, added example absolute paths shown in dark red):
Code:
//And configure the image buttons' images here:
var previmg='http://www.somedomain.com/images/left.gif';
var stopimg='http://www.somedomain.com/images/stop.gif';
var playimg='http://www.somedomain.com/images/play.gif';
var nextimg='http://www.somedomain.com/images/right.gif';
Bookmarks