Could this script be modified to do what I want?
<script label="Add Text Now!">
var t,i,
tids=store.getTaggedTiddlers('UPDATE'),
txt=store.getTiddlerText('NEWTEXT')||'';
if(!confirm("Really add to the contents of:\n"+
tids.map(function(t){return t.title;})))return;
for(i=0;i<tids.length;i++){
t=tids[i];
store.saveTiddler(
t.title,
t.title,
store.getTiddlerText(t.title)+'\n'+txt,
config.options.txtUserName,
new Date(),
t.tags,
t.fields,
t.created
);
};
</script>
Any help is greatly appreciated,
axelm
--
You received this message because you are subscribed to the Google Groups
"TiddlyWiki" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/tiddlywiki/-/Q22EkB0ezmoJ.
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.