> Is it possible for a new tiddler to add its title into the menu? I'd
> like to have a "New" item on the menu; when the user clicks it, it
> will create a new tiddler and, on saving, add the title to the menu.

One way to do this is to use the 'tag' parameter in the <<newTiddle>>
macro to automatically tag the new tiddler with some unique keyword,
like "menuitem":

<<newTiddler .... tag:menuitem>>

Then, in [[MainMenu]] (I assume that's what you meant by 'the menu'),
you could write:
   <<list filter [tag[menuitem]]>>

This will automatically render a bullet list with links to all
tiddlers tagged with "menuitem"

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