Farzher
Farzher

Reputation: 14563

AHK don't consume input?

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

Answers (1)

Robert Ilbrink
Robert Ilbrink

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

Related Questions