> I hope this question doesen't fall in the category "Typical Måns - > Wish he'd learned the JS-language by now.." :-)
;-) > The script I need, should be able to: > a) Choose only from tiddlers tagged "SomeTag" and > b) change the value from true to false for "SomeFieldName"... part a) is already implemented by the line that reads: var tids=store.getTaggedTiddlers(tag); part b) can be done simply by replacing : store.setTiddlerTag(t.title,false,tag); with: store.setValue(t.title,"fieldname",false) where the params are: * tiddler name * field name * field value 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 -~----------~----~----~----~------~----~------~--~---

