> Definitely. Thanks for pointing that out.
> I was actually playing with javascript to find out what I could do,
> and I wanted that tiddler with the list as well (which admittedly
> could be generated by the forEachTiddler macro).

Of course, the results of forEachTiddler are only for *viewing*
purposes, since the macro will only produce output when the tiddler it
is in is rendered.

For *data* purposes, generating a tiddler with a static list of
tiddler titles in it is more useful, since that list can then be read
by various plugins (e.g., StoryViewerPlugin).

One interesting twist.... instead of creating a *real* tiddler in the
store, you can just write the tiddler text to a *shadow* tiddler, like
this:
   config.shadowTiddlers["CurrentTiddlers"]=tidlist.join("\n");

This will create a temporary shadow tiddler... when you save the
document, it will NOT be saved.  Many times, this is desirable... you
can generate chucks of data in tiddlers during the current session,
and they will be automatically discarded when you exit.  Also, because
they are shadow tiddlers, they don't appear in the main tiddler
list.... just the More>Shadowed list.

Plus... if you occasionally *do* want to preserve a temporary shadow
tiddler in between sessions, you can easily turn it into a real
tiddler by using edit/done before saving the document.

enjoy,
-e

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