Is there a way to ignore events?

I have my background as an tap event listener and i also have objects on the screen that can be removed when they are touched.

My question is this: Can you ignore the background’s event listener when you tap one of the removable objects? [import]uid: 42126 topic_id: 9214 reply_id: 309214[/import]

Yes you can add the following to your object’s event listener…

return true

…and the tap will not bubble to the background. [import]uid: 12700 topic_id: 9214 reply_id: 33642[/import]