Hi
I'm using a script to reset (saving tiddlerwise) all
tiddlers tagged with a specific tag (Mr Eric Shulman - gave it to me):
<script label="UpdateTiddlersTagged">
var tag="TagName";
var tids=store.getTaggedTiddlers(tag);
store.suspendNotifications();
for (var i=0; i<tids.length; i++) { var t=tids[i];
store.setTiddlerTag(t.title,false,tag);
store.saveTiddler
(t.title,t.title,t.text,t.modifier,t.modified,t.tags,t.fields);
}
store.resumeNotifications();
</script>
I was wondering if it's possible to make a timed countdown to invoke
this script - to remove the tag from the tiddlers at a certain/
predefined hour of the day, day of the week - or after a defined
timespan counting down from when it was created?
My second question is - how to implement several tags in the same
script - I don't know the syntax - is it cs or "","", or "and" or just
spaces ??
YS Måns Mårtensson
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---