On Feb 16, 5:37 pm, KeithB <[email protected]> wrote: > Is there any way to save all the current tiddlers being edited "en > masse"? > When I have dozens of tiddlers being edited, I'd prefer some way to > avoid clicking "done" repeatedly.
Using http://www.TiddlyTools.com/#InlineJavascriptPlugin you can write: <script label="all done"> story.forEachTiddler(function(tid,elem) { if (elem.getAttribute("dirty")=="true") { story.saveTiddler(tid); story.displayTiddler(null,tid); } }); </script> enjoy, -e Eric Shulman TiddlyTools / ELS Design Studios ---- WAS THIS ANSWER HELPFUL? IF SO, PLEASE MAKE A DONATION http://www.TiddlyTools.com/#Donations note: donations are directly used to pay for food, rent, net connection, etc., so please give generously and often! Professional TiddlyWiki Consulting Services... Analysis, Design, and Custom Solutions: http://www.TiddlyTools.com/#Contact -- 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.

