> A Tiddler menu based "refresh tiddler" item.
You can do this with a bit of inline javascript.
First, create a tiddler, e.g. [[RefreshTiddlerCommand]], containing
this 'onclick' script:
------------------
<script label="refresh" title="redisplay the contents of this
tiddler">
story.refreshTiddler(story.findContainingTiddler(place).getAttribute("tiddler"),null,true);
</script>
------------------
Then, to add this script to the tiddler toolbar in the ViewTemplate...
find this line:
<div class='toolbar' macro='toolbar
[[ToolbarCommands::ViewToolbar]]'></div>
and add this line either before or afterward:
<span class='toolbar' macro='tiddler RefreshCommand'></span>
That should do it. A "refresh" command should appear in the tiddler
toolbar.
enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios