I’m a bit confused as to the difference between these two functions and when either should/could be used.
Can anyone shed some light?
I have a simple script:
<$button>
<$action-listops $subfilter="[tags[]search[,]search[q]]" />
<$action-createtiddler
$basetitle=<<currentTiddler>>
tags="Person"
overwrite="yes"
/>
Go
</$button>
I want this script tp find all tag values containing a comma and the letter q and then create a new tiddler for each with its title being the value of the tag and having a tag, Person, overwriting any that may already exist.
The above script just creates a single new tiddler, titled New Tiddler, with tag Person. So I assume the issue is that the list is either not gone through (there should be about 6 candidates) or the new tiddler is created and overwritten six times.
Should I be using $list instead of $action-listops?
bobj