Here's the problem:

I want ot button that creates a tiddler containig the actual story including a button to open the story contained with the story saver plugin...
I imagine this could be usefull very for a lot of people...

I used newSavedTiddlerPlugin > http://mgsd.tiddlyspot.com/demo3.html#NewSavedTiddlerPlugin

Creating a macrobutton:
<<newSavedTiddler
        label:"Save this Story"
        text:{{store.getTiddlerText('SaveStoryTemplateTiddler')}}
        tag:'MyTag1 [[Three Word Tag]]'
>>

...and a SaveStoryTemplateTiddler
<script>
var out = "" ;
story.forEachTiddler(function(t){
   var tid=store.getTiddler(t);
    if(tid&&!tid.isTagged("excludeStory"))
      out+="[["+t+"]]\n";})
return out ;
</script>
<<openStory {{tiddler.title}} "Open this Story" "Display all the tiddlers listed above...">>

Now problem is:
The script should be rendered to save the current storyline as static links, not to display the one actually opened on a later moment.
How do I accomplish this.

Is there something like "clickyfy" for this cause...?

Hopefully Jan

--
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/tiddlywiki.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to