> Thanks Eric - but this script only seems to refresh the display of the
> tiddler - not the content - which is why the first script you gave me
> is so good.
ah... normally "refresh" means 'update the display', not 'save the
content'...
... and thus, the confusion about what you are asking for...
> invokes the UploadTiddlerPlugin and each tiddler tagged gets saved
> inividually.
> What I need is a script to do the same thing with the tiddler it's
> present in.....
Try this:
<script label="save this tiddler">
var here=store.findContainingTiddler(place); if (!here) return;
var t=store.getTiddler(here.getAttribute('tiddler')); if (!t)
return;
store.saveTiddler
(t.title,t.title,t.text,t.modifier,t.modified,t.tags,t.fields);
</script>
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
-~----------~----~----~----~------~----~------~--~---