I’m using a touch event on a shape. If I drag outside the shape and release I don’t get an event message. Any suggestions on handling a touch up outside? [import]uid: 98652 topic_id: 19021 reply_id: 319021[/import]
To track touches outside of the shape you can add a global event listener, something like this:
Runtime:addEventListener("touch", checkButtonBounds);
[import]uid: 70847 topic_id: 19021 reply_id: 73316[/import]