On Feb 15, 1:16 pm, RA <[email protected]> wrote:
> The reason is I want a story that is the same across computers and at
> the same time different for two different wikis. So cookie doesn't cut
> it.
The theory behind this solution is that, by you wanting the 'story'
loaded on start-up, we can use the DefaultTiddlers tiddler to do the
loading.
This script will insert the currently open tiddlers titles, i.e.
'story', into the DefaultTiddlers tiddler, therefore allowing you to
use it in any number of TiddlyWikis without interfering cookies.
<script label="Save Story">
var out = "" ;
var title="DefaultTiddlers";
story.forEachTiddler(
function (title, element) {
out += "[["+title+"]]\n " ;
});
store.saveTiddler(title,title,out);
</script>
Morris Gray
On Feb 15, 1:16 pm, RA <[email protected]> wrote:
> I would like to save the story to a tiddler (without ever displaying
> this created/updated tiddler) every time I save the wiki, and load
> that story automatically on startup.
>
> The reason is I want a story that is the same across computers and at
> the same time different for two different wikis. So cookie doesn't cut
> it.
>
> Can StorySaverPlugin be adapted to my case?
>
> Thanks
>
> --R
--
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.