Reputation: 14563
I have another program listening to ctrl alt shift numpaddiv
; but autohotkey consumes the input. How can I tell autohotkey to not consume it?
^!+NumPadDiv::
Run, log_base_timestamp.py ,,Hide
return
Upvotes: 2
Views: 769
Reputation: 7953
Not sure if it will work here, but normally when you add ~ in front of the hotkey, that hotkey will be passed on to the OS instead of blocking it. In your situation it would be:
~^!+NumPadDiv::
Run, log_base_timestamp.py ,,Hide
return
Upvotes: 3