There is no need to use applets for slide show and you would only complicate your life. You may do it with JavaScript as I did it few years back in my coursework where I use buttons to move from image to image, but you can exclude buttons and use timer to change image every 3-5 seconds. Also same thing cam be done with Flash, PHP, Ajax and other things(flash slide show on top of the page on my website). Everything depends on you, if you wish to learn new language or new software application
peter_budo
Code tags enforcer
15,436 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 901
If you look up the source code (do right click on Gallery, open link in new window/tab, then right click on new opened document and View Page Source) to that slide show, you will see that buttons are just images which can be swaped for anything you like
<A HREF="JavaScript:slideshowBack()" onmouseover="mouseOn('left');" onmouseout="mouseOff('left');">
<IMG SRC="../img/l_arrow_off.png" BORDER="0" NAME="left" id="left" ALT="Previous Image"></A>
<A HREF="JavaScript:slideshowUp()" onmouseover="mouseOn('right');" onmouseout="mouseOff('right');">
<IMG SRC="../img/r_arrow_off.png" BORDER="0" NAME="right" id="right" ALT="Next Image"></a>
peter_budo
Code tags enforcer
15,436 posts since Dec 2004
Reputation Points: 2,806
Solved Threads: 901