I ran into trouble using an Execute a Macro action with a comma-separated parameter, where the sub-macro receives the parameter and uses the values of %TriggerValue[1]% and %TriggerValue[2]%
It works great, except when one of the comma-separated values itself contains a comma it is interpreted as a separator, which makes sense but botches everything up.
My solution was to use a pipe instead of a comma in the parameter, then split the %TriggerValue% into separate variables in the sub-macro using the Search using Regular Expression Action.
Is there a more direct way to "ignore" the comma as a separator within the built-in parameter structure?
I don't think I would have made the connection here between variable array and token, so I would not have thought that parameters/TriggerValues could be used in this way. Thanks so much!