Hello everyone! I was wondering if anyone would know a good way to read when keys are pressed on the keyboard or mouse (as in a hotkey), so that for instance, while I am holding left-CTRL, I could make my mouse repeatedly perform right-clicks using the DigiMouse library.
Something like this pseudo-code:
while(hotkey is pressed)
{
perform action ;
}
Thank you very much for your help!