SlideShow Example #2             


Here, three sample banners are rotated, with each remaining on the screen for 10 seconds. Each banner arrives from the top of the applet. The URL parameters have been prefixed with dollar signs so that a click will be ignored. Once again, no Target parameters are needed. Message parameters have also been removed, so there is no need of Font, TextColor, or TextBgColor parameters either.

Because each image arrives from the top, and the applet is only 60 pixels high, a relatively slow AnimationDelay of 5 has been set. Note that if images were to arrive from Left or Right instead (which they would also do with the Random setting) they will have to cover the full 468-pixel width at this speed which will seem very slow indeed! Below is the applet tag for this example:

<APPLET CODE="rySlideShow" ARCHIVE="SlideShow.jar" WIDTH=468 HEIGHT=60>
<param name=CabBase value="SlideShow.cab">
<param name=Copyright value="SlideShow (c) 1997 Cool Focus [www.coolfocus.com]">
<param name=BgColor value="F0F0FF">
<param name=ShowFilename value="no">
<param name=Pause value="10">
<param name=Position value="centered">
<param name=Animate value="yes">
<param name=AnimateFrom value="top">
<param name=AnimationDelay value="5">

<param name=Image1 value="b1.gif">
<param name=URL1 value="$http://www.coolfocus.com">
<param name=Image2 value="b2.gif">
<param name=URL2 value="$http://www.coolfocus.com">
<param name=Image3 value="b3.gif">
<param name=URL3 value="$http://www.coolfocus.com">
</APPLET>