> This lead me to creating this: <<list filter [tag[systemConfig]] [sort
> [created]]>> which means I don't need the FET plugin.  Cool.  Now, if
> there were a way to tag tiddlers linked from a particular tiddler, I'd
> be set.

Using InlineJavascriptPlugin:

<script>
   var tid="AParticularTiddler";
   var tag="tagToAdd";
   var links=store.getTiddler(tid).links;
   store.suspendNotifications();
   for (var i=0; i<links.length; i++)
      if (store.tiddlerExists(links[i])
         store.setTiddlerTag(links[i],true,tag);
   store.resumeNotifications();
</script>

enjoy,
-e

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to