> Is there a generic way to "show all the custom fields that I've added,
> even if I forgot what I called them" for a list of tiddlers (e.g.,
> tiddlers tagged with "myTag")?

Try this inline script (requires TiddlyTools' InlineJavascriptPlugin):

<script>
        var out=[]; var fmt='| %0|%1|';
        var tids=store.getTaggedTiddlers('alpha');
        for (var i=0; i<tids.length; i++) {
                out.push(tids[i].title);
                for (var f in tids[i].fields) 
out.push(fmt.format([f,tids[i].fields
[f]]));
        }
        return out.join('\n');
</script>

enjoy,
-e
Eric Shulman
TiddlyTools / ELS Design Studios
--~--~---------~--~----~------------~-------~--~----~
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