mouseReleased() problem with android tablet
in
Android Processing
•
1 year ago
I am using processing 2.0a4 on Windows Vista and I have a strange problem with mouseReleased() function. It works perfectly in standart mode(on pc) but when I run the sketch on device(android) It does not work properly.
I have used this code for testing;
void mousePressed(){
println("mousePressed ---> x:"+mouseX+" y:"+mouseY);
}
void mouseDragged(){
println("mouseDragging ---> x:"+mouseX+" y:"+mouseY);
}
void mouseReleased(){
println("mouseReleased ---> x:"+mouseX+" y:"+mouseY);
}
Sometimes it writes the released part, sometimes does not.
1