Hi Mans,

> What is the best method of usig the script? - I don't know how to:
> "use an inline script to
> iterate over the list of title" ... please educate me..
>

You simply put the script in any tiddler, and change "SomeList" to the
"TiddlerTitle" of the tiddler which contains your list. The moment you
click 'done' and the script is rendered it will have set 'tagName' to
all those listed tiddlers. For not having this script invoked every
time you open this tiddler, simply place it in a slider, for example
NestedSliders:

+++
<script>
   var titles=store.getTiddlerText("SomeList").readBracketedList();
   for (var i=0; i<titles.length; i++)
      store.setTiddlerTag(titles[i],'tagName',true); // true=set,
false=clear
</script>
===

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