local function onScreenTap(event) touchX, touchY = event.target:contentToLocal (event.x, event.y) end Runtime:addEventListener("tap", onScreenTap)
This gives me the error: attempt to index field ‘target’ (a nil value)
Anyone know how to transfer the OS touch input to the stage co-ordinates?
Thank you.