Kyatric "Compare the value of an instance variable that you set in the IDE".
Thanks, I'm aware that you can do it by comparing instance variables, but that seems to me to be a roundabout way of identifying a particular instance in a system condition.
I was hoping that there's some more direct way of knowing the IID of each instance and being able to use that.
For example, let's say my layout has a cat in each corner and a cat in the centre. Is there any way I can tell what the IID is of the cat in the centre?
In JavaScript, they'd each have different names (e.g. centreCat, topLeftCat, ...) and I could say 'centreCat.favorite = true' (with all the cornerCats having their 'favorite' Boolean set to 'false').
So another way of asking my question is:
How do I program 'centreCat.favorite = true' in Construct 2?