I have two Text objects, one is simply a copy and paste of the other. They have two instance variables, myIndex and myValue.
I have set myValue to 0 for both.
I have set myIndex for one to 0, and the other two 1.
So there are two Text objects where myValue = 0.
The problem is how to pick them both.
I have tried many approaches, and all pick the first only.
See this 3 event capx:
https://www.dropbox.com/s/vusdakk5nr7qb09/pickTest.capx
I can obviously use a for each etc, but my interpretation of the manual pages, the ones I have used should select all, not the only the first one.
Any recommendations for a way to pick all objects where some condition is true?