Sarah (and Sivakatirswami) wrote:

I would be very interested to see your code for this slideshow please.

Ok, but it's almost too easy to post. There's a folder called "cgiphotos" of flower images in the same directory as the irev page. Inside that folder is also a text file named "cgiphotos.txt", which contains a list of all the available photos. Each line of the list has a file name as item one and a description as item two, like this:

daisies.jpg,Daisies
columbine2.jpg,Columbine
etc

In the html where I want the slideshow image to display, I choose a random image and stuff that into the img src tag:

<?rev
put any line of url ("file:cgiphotos/cgiphotos.txt") into tFlower
?>

<img src="cgiphotos/<?rev put item 1 of tFlower ?>" width="320" height="240" border="1" />

And later at the bottom of the page where I want the description to appear:

<?rev put item 2 of tFlower" ?>      

I just use the refresh directive in a header to reload the page every ten seconds:

<meta HTTP-EQUIV="refresh" CONTENT="10">

Pretty easy. If you wanted the slide show to be in a strict order, it would be harder. I think you'd need to either set up cookies, or write the current line to disk and read that for each reload, then update the counter in the text file with the next line number.

Or if you didn't want to keep a text file, you could read the files in the directory and get the list that way too.

--
Jacqueline Landman Gay         |     jac...@hyperactivesw.com
HyperActive Software           |     http://www.hyperactivesw.com
_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to