We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hello, I wanted to override the normal function of 'VOLUME_DOWN' keycode with my own thing. I am using this :
void keyPressed()
{
if( key == CODED && keyCode == android.view.KeyEvent.KEYCODE_VOLUME_DOWN )
{
voldown(); \\my stuff
}
}
While doing this I am seeing that my function voldown() as well as normal android volume slider decrement is executing.
Answers
@avichalsahai:: what version of Processing??? - 2XX or 3XX???