I am a newbie in programming, but I am already trying to make apps for android. My question is this:
Imagine that I have a simple program with the mousePressed command.
If I put my finger on the display on my phone I activate the mousePressed command. If I keep my finger on the display I can not touch anywhere else on the screen and activate a new mousePressed command, since the program know that I have my finger at X,Y and that my the mousePressed command is still active.
Is there any way to "reset" or "Kill" the mousepointer location and the mousePressed command just after I have touched the screen (and left my finger on there), or make a zone on the screen "dead" just after touch plus that it resets the mousePressed command, so If touch somewhere else on the screen (with another finger) the program think its a new mouse postion and mousePressed command is avaible for that finger.
(I have read about some multitouch implentations, but it´s to advanced for me. yet.)
I hope that I described my problem in a way that was understandable.