I have a series of similarly named Objects, cont100, cont101, etc., each with a Boolean parameter active_. I have a Shared Object which holds an Array of Booleans [false, false, true, etc] corresponding to the starting state of Objects cont###.
When loading the Shared Object, how can I assign the correct Boolean value from the Array to each cont###.active_ ? I know how many cont### Objects there are, but they’re not in perfect sequence, ie. some numbers are skipped.
Is there a way to search for all Objects with names starting “cont” like I would with a String?