http://www.dynamicdrive.com/dynamici...dhtmlslide.htm
Is there a way to make the slide show script "next slide button" loop back to the first picture when it come to the end?
http://www.dynamicdrive.com/dynamici...dhtmlslide.htm
Is there a way to make the slide show script "next slide button" loop back to the first picture when it come to the end?
Replace the two functions of the same names as these with these versions:
Code:function backward(){ which=which>0? which-1 : photos.length-1 applyeffect() document.images.photoslider.src=photos[which] playeffect() keeptrack() } function forward(){ which=which<photos.length-1? which+1 : 0 applyeffect() document.images.photoslider.src=photos[which] playeffect() keeptrack() }
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
Thank you so much John it worked like a dream. I appreciate it so very much. Here's the page on my site if you want to see what I've done: http://bayeus.pircsites.com/page-two.html
Again Thank you so very much for your help.
Bookmarks