Help with catching multiple keypresses
in
Programming Questions
•
5 months ago
I am a total newbie on processing and I need some help with catching keycombinations like CTRL+t or ALT+g and such.
What I've tried so far is:
if (key == CODED && key == CONTROL && key == 't') {
}
but this doesn't trigger at the CTRL+t keycombination.
Is there a simple way to realize such things?
1