I need to get the contents of several tiddlers and put the whole lot
into another,
This is painfully obviously wrong but perhaps you'll see the logic
behind it,

<script>
var out="";
var append"";
var title="$1";
var tids=store.getTaggedTiddlers("varinested");
var txt=store.getTiddlerText('$1');
for (var t=0; t<tids.length; t++)
append+=txt[t]+"\n";
store.saveTiddler(title,title,append);
return out;
</script>

Can you help?

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