> > how do you create a link in which you can specify the hover text?
> > I've tried creating <a> elements inside of <html> tags, specifying
> The ALT attribute is alternate text in case the image cannot be
> displayed*. What you want there is the TITLE attribute.
> TiddlyWiki doesn't have any special markup for this, so using raw HTML
> is probably the best way.
This little trick will work:
[[test this|About]]<<tiddler {{place.lastChild.title='it works';''}}
>>
The first parameter for the <<tiddler>> macro is supposed to be a
tiddler name. However, instead of using literal text, we are using a
computed parameter that actually sets the title attribute of the
immediately preceding element (e.g, the tiddler link), and then ends
with a blank string (e.g., '') so that there is no matching tiddler
name to transclude and no extra output is rendered.
Note: while this works, the syntax is a bit technical and thus harder
to read and more prone to mistakes. One way to address this is to
define a quick *alias* macro using
http://www.TiddlyTools.com/#AliasPlugin
After installing the plugin, define the following alias (put it in
MainMenu or any other tiddler that is rendered at startup):
<<alias tooltip {{"\<\<tiddler \{\{place.lastChild.title='%0';''\}\}\>
\>"}}>>
Then, to invoke it:
[[test this|About]]<<tooltip 'it works'>>
enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios