I want to use multitouch for preventing finger(s) holding a tablet stopping all other actions for the (other) input finger on the screen BUT: When setting a focus like this on a screen image:
…
local targetID=event.id local target = event.target display.getCurrentStage():setFocus( target,targetID ) target.isFocus = true
…
targetID is the event.id for the touch.
This code lines are not stopping the target from jumping on the screen to position inputs for all fingers on the screen, as soon the fingers are moved. What am I doing wrong here?
How can I use multitouch to catch a finger on screen but allow inputs from other fingers on the screen?
Is it possible I’m using the wrong listener here?
And what about “tap” events?
Any help welcome?
Thx!