agdurrette 0 Report post Posted October 31, 2008 i looked at a tutorial hear http://forums.xisto.com/topic/8741-javascript-slideshow-tutorial-how-to-make-a-slideshow-in-javascript/. I like it but i would like to be able to auto play/play it. thanks for the help Share this post Link to post Share on other sites
Nabb 0 Report post Posted November 1, 2008 Use an interval, e.g. (changes every second i.e. 1000 milliseconds)intID = setInterval ( "nextPicture()", 1000 );To clear, useclearInterval(intID) Share this post Link to post Share on other sites