I have this menu made of several instances of the same text object. The menu is made up of different layers, and each layer is a separate view of the menu (the different layers are set to visible/invisible when navigating).
The text object has an instance variable GoToLayer containing the number of the layout to go.
When clicking a text object, it checks if the text object's layer is visible, and if so it sets the new layer visible.
The event sheet looks like this:
<img src="https://dl.dropbox.com/s/4vbj6rjhvymks1x/menuexample.png" border="0">
Everything works well if the text instances are not placed on top of each other in the different layers!
But the menu doesn't work when the text instances overlap each other, probably because the second condition fails for the instance of the invisible text..?
So what is the easiest way to make this work (using events)?
I've included a CAPX here. You can test to run the example as is, and then try moving one of the texts so that they don't overlap.
Maybe there's a bug in the trigger, when several triggers are triggered?