> Is is possible to use this slideshow code within a > tiddler?http://www.lateralcode.com/simple-slideshow/
Althought it *might* be possible, it's not necessary. You can use http://www.TiddlyTools.com/#QuoteOfTheDayPlugin to create a slideshow of images (or any other tiddler content) Usage: <<QOTD ImageList norandom 5>> where [[ImageList]] is a tiddler containing the sequence of embedded images to display, using an "HR-separated list", like this: [img[images/foo.jpg]] ---- [img[images/bar.jpg]] ---- [img[images/baz.jpg]] ---- [img[images/mumble.jpg]] ---- [img[images/frotz.jpg]] The "norandom" parameter ensures that the images will be display in sequence, rather than being selected randomly from the list. The "5" parameter specifies the delay time (in seconds) for auto- advancement to the next image. Moving the mouse over the image will stop the timer. Moving away from the image restarts the timer. Clicking an image advances to the next one immediately. After the last image, the cycle loops around and the sequence is repeated. An alternative approach would be to use http://www.TiddlyTools.com/#SlideshowTimer which can automatically open a specified tiddler after a given amount of time. You would embed each image in a separate tiddler, along with the following tiddler transclusion macro: <<tiddler SlideshowTimer with: [[NextTiddlerName]] 5 close>> Where [[NextTiddlerName]] is the title of the specific tiddler to be viewed next, "5" is the delay timer (in seconds), and "close" is an optional keyword that will cause the current tiddler to be closed automatically when then next tiddler is opened. enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/tiddlywiki?hl=en.

