> I need some way to open all the links from a given tiddler:
>
> This tiddler has
> [[info 1]] then perhaps a and a whole bunch of other stuff then
> more stuff then [[info 2]]
> etc more stuff [[info 3]]
>
> So I want to keep this tiddler open, but also open [[info1]], [[info2]],
> [[info3]] tiddlers all at once.
Using InlineJavascriptPlugin, you can write:
<script label="go">
var here=story.findContainingTiddler(place);
var tid=store.getTiddler(here.getAttribute('tiddler'));
story.displayTiddlers(here,tid.links);
</script>
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.