You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to TiddlyWikiDev
I have a large javascript tiddler with the following outline:
<script>
var myFile = "DataFile";
var ProcessedData = "";
...
...
...
return ProcessedData;
</script>
It works fine: everytime I click the tiddler hyperlink, it processes
the data in the "DataFile" and displays it as the tiddler text.
I would like to create multiple links such that each link processes
the data from a different data file. I noticed in the discussion
groups that people have often talked about passing arguments to a
macro. Is there a way of doing it with a tiddler without having to
turn it into a macro?