C2 just did not autocomplete at all.
C3 auto completes with only system expressions. Guess that looks like a bug.
Work around it by first typing MyObject.SomeValue.
The type the (3) in between them to get MyObject(3).SomeValue (with auto complete)
But be aware of this. That value between the ( ) is the IID (it is in c2) for all items, whatever is picked.
Unless the loop runs trough ALL instances in the SAME order as they are created, it has no function.
-------------------------- <---- no pre-picking
For each MyObject <- runs trough them in creation order
Compare two values ... first = MyObject(loopindex).SomeValue =? second ... 5
Compare two values ... first = MyObject(loopindex + 1).SomeValue =? second ... 5
Compare two values ... first = MyObject(loopindex + 2).SomeValue =? second ... 5
__________ Actions
To test if 3 consecutive SomeValue's are = 5 ...
Works flawless.
This will not work
Is on Screen (MyObject) <-- prepick
System: For each MyObject order by MyObject.?X ascending <-- & wrong order
Compare two values ... first = MyObject(loopindex).SomeValue =? second ... 5
Compare two values ... first = MyObject(loopindex + 1).SomeValue =? second ... 5
Compare two values ... first = MyObject(loopindex + 2).SomeValue =? second ... 5
__________ Actions