Is there a limit on the number of items found through a filter if each of those items has a subsequent action?
For example, my rearrangedate script, as provided by @Scott_Sauyet ,
<$button>Update date fields
<$list filter=[tag[All Items]has:field[date_start]]> <!-- Change me -->
<$action-setfield $field="date_start" $value={{{ [{!!date_start}split[/]reverse[]join[]] }}} />
<$action-setfield $field="date_end" $value={{{ [{!!date_end}split[/]reverse[]join[]] }}} />
</$list>
</$button>
appears to run but I see a very quick flash of something to the right of my window but so fast I can’t see what it says. Nothing appears to get changed though, so it would appear the script is not doing anything.
However, if I change the filter to
<$button>Update date fields
<$list filter=[object_type[Event]has:field[date_start]]> <!-- Change me -->
<$action-setfield $field="date_start" $value={{{ [{!!date_start}split[/]reverse[]join[]] }}} />
<$action-setfield $field="date_end" $value={{{ [{!!date_end}split[/]reverse[]join[]] }}} />
</$list>
</$button>
then everything runs as expected.
If I trial
[tag[All Items]has:field[date_start]]
in the filter test facility, all items (457) appear to be returned.
bobj