In order to trigger actions, you need a $button widget.
Your `<<createtiddlers …>> macro call passes in the name of the tiddler containing the list of titles. Thus, your macro definition needs to declare a parameter (e.g., “tid”) so you can reference this passed in value.
Within the $list widget’s filter parameter, <__tid__> refers to the passed in value, get[text] retrieves the contents of that tiddler, and enlist-input[] converts the text into a list of space-separated titles to be processed.
Also, I note that the list of titles in your example includes a title with spaces (“Tiddler Three”). In order to handle this as a single title, it needs to be enclosed in doubled square brackets. Thus, the contents of “ListOfTitles” needs to be:
Thank you Eric, I appreciate your help. I tried your solution, but still cannot get it to work. I’m using TW v 5.2.3 with Bob together with the streams plugin.
I’m interested in using lists so that I can set up a group of tasks taken (copied) from a column in an excel table. These all have the same prefix to help me track them.
What is the name of your tiddler containing the titles? In the OP you wrote “ListofTitles” while @EricShulman code uses ListOfTitles (notice the uppercase “o”).