> What I would like to be able to do is to display two or more thumbnail
> images in a horizontal row (see example below)  and below each
> thumbnail display a formatted caption and below that the slider
> button.

Give this a try:

First, create a tiddler called [[ThumbThing]], containing:

<<tiddler [[$1::theThumbImage]]>>
<<tiddler [[$1::theCaption]]>>
<<slider "" [[$1::theFullImage]] "Show Full Image" "click for larger
image">>

Then, in another tiddler, add a table where each cell in the table
contains a <<tiddler>> macro, like this:

| <<tiddler ThumbThing with: Apollo13Display>> | <<tiddler ThumbThing
with: SaturnVDisplay>> | <<tiddler ThumbThing with: RolloutDisplay>> |

Take note of the $1 'substitution marker' used in [[ThumbThing]] and
the "with: TiddlerName" syntax used in the <<tiddler>> macro.  When
the <<tiddler>> macro is processed, the TiddlerName value from the
macro is used in place of the $1 markers when rendering the content
from ThumbThing.  There result is that each instance of the
<<tiddler>> macro transcludes the same layout, but displays a
different thumbnail, caption and link.  QED.

That should do it.

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
-~----------~----~----~----~------~----~------~--~---

Reply via email to