Forum Discussion
Change state of an object, when all layers have been visited independently from order.
To be able to access buttons on the base layer while a layer is open, make sure the settings for the layer are correct. The Visibility should not be hiding the base layer. And uncheck "Prevent the user from clicking on the other layers" This solution only works if the base buttons won't be covered by layer content.
Alternatively, I have set a numeric variable starting with 0. As the buttons are used, I toggle their state, but also add 1 to the variable, only if it wasn't already in the new state. Then I put a trigger for when the variable changes. When variable = total button count, then do your finger action.
You might actually be able to simplify my solution by using visited rather than a custom state and therefore not needing to manually change the state. I've just never done it that way.