Using Eric Shulman's InlineJavascriptPlugin, you can do this:
<script label="Unravel">
var tagname = "TopTiddler" ; // Put your tree root name here
if (!window.MAS) window.MAS = {};
MAS.openTiddlersPerTag = function(tagname) {
story.displayTiddler(place,tagname) ;
var tids = store.getTaggedTiddlers(tagname) ;
if(tids.length > 0 ) {
for(var i=0;i<tids.length;i++) {
MAS.openTiddlersPerTag(tids[i].title) ;
}
}
} ;
MAS.openTiddlersPerTag(tagname) ;
</script>
On Dec 18, 8:23 am, EduardWagner <[email protected]> wrote:
> Hi,
> i would like to open many tiddlers at once for printing needs.
>
> So corresponding to TagglyTaggingPlugin or SiteMapMacro i would like
> to open all tiddlers
> starting from the root tiddler and opening all tiddlers in the trees
> at once.
> TagglyTagging uses an embedded view to show the tiddler content, but i
> would like to open separate tiddlers.
>
> Any hints?
> Thanks Edi
--
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.