> How can I open all tiddlers in the "All"-tab list at once?
> I don't want to click each manually or create a list tho.

Using HTML syntax, you can write:
------------------------
<html><nowiki><a href='javascript:;' onclick="
        var tids=store.getTiddlers();
        var titles=[];
        for (var t=0;t<tid.length; t++)
                titles.push(tiddlers[t].title);
        story.closeAllTiddlers();
        story.displayTiddlers(null,titles);
        return false;
">open all...</a></html>
------------------------

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios

HELP ME TO HELP YOU - MAKE A CONTRIBUTION TO MY "TIP JAR"...
   http://www.TiddlyTools.com/#Donations

Professional TiddlyWiki Consulting Services...
Analysis, Design, and Custom Solutions:
   http://www.TiddlyTools.com/#Contact

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