> I'd like my pictures to become clickable links to the tiddlers from > where I fetched them into my table via fET. > Maybe this could be automated in some way?.. > > Here's an example of the code I use for fET when retrieving a picture > and a title when hovering the mouse over the picture, which is shown > in my table: > [img(55%,auto)["+store.getValue(tiddler,"title")+"|"+store.getValue > (tiddler,"image")+"]]
> I just need the picture to "link back" to the tiddler from where it > was fetched, when clicked on... The TW standard syntax for a *linked* image is: [img[...][link]] where 'link' can be either an internal tiddler link, or an external URL. Thus, for your fET-generated output, you would simply write something like: "[img(55%,auto)["+store.getValue(tiddler,"title")+"|"+store.getValue (tiddler,"image")+"]["+tiddler.title+"]]" 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 -~----------~----~----~----~------~----~------~--~---

