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

Example 14.16 (Second Page):
Stopping a Slide Show

This is the second page in the "slide show."

Just wait a few seconds, and you'll automatically move to the next file in sequence. Then back to the first, and then back to this one, and around, and around. To stop the movement, click on the following button:

Click here to go to the next page in the slide show:


This is the script we used: <SCRIPT> <!-- function LetsMove() { location='14-16b.htm' } //--> </SCRIPT> </HEAD> <BODY BGCOLOR="red" onload="move=setTimeout('LetsMove()', 5000)"> These are the buttons: <FORM> <INPUT TYPE="BUTTON" VALUE="Stop Movement" onclick="clearTimeout(move)"><P> Click here to go to the next page in the slide show:<P> <INPUT TYPE="BUTTON" VALUE="Next Page" onclick="window.location='14-16b.htm'"><P> </FORM>
Previous Example-|-Next Example-|-Return to Chapter Listing