> create a link through from a clickable area on an image to a tiddler

TiddlyWiki itself has no special handling for this sort of thing.
However, you could use raw HTML to generate image maps*, using a simple 
JavaScript action in the href attribute to open a tiddler:
     story.displayTiddler(null, "TiddlerName");

For example:
---------------
<html>
<img src="img/people.png" width="145" height="126" alt="people"
     usemap="#peoplemap" />

<map name="peoplemap">
   <area shape="rect" coords="0,0,20,20"
     href="javascript:story.displayTiddler(null, "Jon");"
     alt="Jon" />
   <area shape="rect" coords="20,20,40,40"
     href="javascript:story.displayTiddler(null, "Jane");"
     alt="Jane" />
</map>
</html>
---------------

HTH.


-- F.


* http://en.wikipedia.org/wiki/Image_map

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