In a stack of images: how to make only the top image recieve the tap event?

Title says it all.

If one image overlaps another I want the top one to run it’s OnTap function, but as of now both of them will run their functions.

Well, I know how to do it, but you haven’t posted any code, so I can’t tell what your specific code’s problem is…

Having said that, this sort of thing usually results from not having “return true” at the end of your touch/tap listener.

Thanks, that fixed it.

Well, I know how to do it, but you haven’t posted any code, so I can’t tell what your specific code’s problem is…

Having said that, this sort of thing usually results from not having “return true” at the end of your touch/tap listener.

Thanks, that fixed it.