>
> 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
>
Rather than fetching the tiddler text being the script, I believe you
rather want to run that script in the context of your *newSavedTiddler* macro
call.
So, the solution would look something like this (untested)...
<<newSavedTiddler label:"Save this Story"
text:{{
var out = "";
story.forEachTiddler(function(t){
var tid=store.getTiddler(t);
if(tid&&!tid.isTagged("excludeStory"))
out+="[["+t+"]]\n";
})
out;}}
tag:'MyTag1 [[Three Word Tag]]'
>>
Tobias.
--
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.