— Sure. I am trying to add Mobile controls to a game that would otherwise be played on a PC using the Keyboard. So for movement I have:
Right key is down OR (Touch.X > LayoutWidth/2 AND Is in touch) Then
... Do stuff for moving right
Left key is down OR (User Touch.X < LayoutWidth/2 AND Is in touch) Then
... Do stuff for moving left
etc.
The reason I have to include "Is in touch" is because it appears that Touch.X may be true even if Is in touch is not..