> How to open the default tiddler and the latest 3 tiddlers tagged with
> "footag" automatically at reloading ?
>
> Or, could I have a group of tiddlers automatically open at reloading ?
To save/reload any arbitrary group of tiddlers (a "story"), try this
plugin:
http://www.TiddlyTools.com/#StorySaverPlugin
For your specific goal (opening the the N most recent tiddlers tagged
with "footag"), you could use a small custom plugin containing an
"init" function, like this:
[[OpenRecent]]
//{{{
config.macros.openRecent = {
limit: 3,
tag: "footag",
init: function() {
var tids=store.getTaggedTiddlers(this.tag,"modified").reverse();
for (var i=0; i<this.limit && i<tids.length; i++)
story.displayTiddler("bottom",tids[i].title);
}
}
//}}}
...tag this tiddler with 'systemConfig', save-and-reload, and you
should be all set...
enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---