> I looked through tutorials but I am still stumped.  I am trying to
> stick images in my tiddlers.

embed this syntax into your tiddler content:
   [img[file.jpg]]

You can include an optional 'tooltip' (mouseover text):
   [img[text|file.jpg]]
and/or include an optional 'click through' link to a URL:
   [img[text|file.jpg][http://www.example.com/]]

If you want the image to 'float left' or 'float right' (so other
content wraps around the image), you can include a special prefix of
"<" or ">", respectively:
   [<img[file.jpg]] or [>img[file.jpg]]

In addition, if you install this plugin:
   http://www.TiddlyTools.com/#ImageSizePlugin
then you can indicate the desired width and height of an image by
adding an optional "(w,h)" portion to the syntax:
   [img(w,h)[file.jpg]]
where 'w' and 'h' are CSS values (e.g. "200px", "5em", "1.5in",
"25cm", "80%"), like this:
   [img(400px,300px)[file.jpg]]
The plugin also adds the ability to interactively resize an image with
the mouse, by appending a "+" following the width and/or height CSS
values, e.g.:
   [img(400px+,300px+)[file.jpg]]

Thus, putting it all together (using all core and plugin-defined
features), you could write:

   [<img(100px+,75px+)[text|file.jpg][URL]]

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