Yuppie!
This seems to bring me close to solve a problem I have longed for so
much time...
I want ot create a tiddler wich 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 this famous 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 here is the remainig problem:
The script should be rendered to save the current storyline, 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