The ExtraValues parameter expects an array that starts with an EventValue eg,
#(!Index 1 5 9 4)
I want to generate an array with a large number of EventValues, like:
#(!Index !osc_index__1 !osc_index__2 ... !osc_index__100)
So what I thought I would do is something like this:
#(!Index) , { 1 to: 100 collect: [ :i | !osc_index__ suffix: i ]}
But that gives me an error:
"Error: The value 3 was used to index OrderedCollection (`Index `osc_index__1) ... this index is out of bounds..."
I've tried every arrangement of brackets I can think of and I always get a similar error or a stack trace. What am I doing wrong?