Previous Example-|-Next Example-|-Return to Chapter Listing

Example 14.15 (First Page):
Creating a Slide Show

This is the first page in a "slide show."

Just wait a few seconds, and you'll automatically move to the next file in sequence. Then the next, and then back to this one. (And around again). To stop the movement, click on the Next Example link at the top of the page (I'll show you how to add a button that stops this motion in the next example).

This is the script we used: <SCRIPT LANGUAGE="JAVASCRIPT"> <!-- function LetsMove() { location='14-15a.htm' } //--> </SCRIPT> </HEAD> <BODY onload="setTimeout('LetsMove()', 5000)">
Previous Example-|-Next Example-|-Return to Chapter Listing