How do I remove a tag from all tiddlers tagged with it - and refresh
those tiddlers, which were tagged, with that specific tag - in one
action??
If I use tiddlertweaker - it happens automatically - but I need some
kind of script - controlled by a labelled button - which I would call
- "Reset all TagName"
I'm already using a script to update (saving tiddlerwise) every
tiddler tagged with a specific tag:
<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.saveTiddler
(t.title,t.title,t.text,t.modifier,t.modified,t.tags,t.fields);
}
store.resumeNotifications();
</script>
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
-~----------~----~----~----~------~----~------~--~---