Reputation: 522
I created an ahk script with a keyboard shortcut. However, I would like to disable the shortcut in a specific application. How would I go about doing that? Thanks.
Upvotes: 0
Views: 632
Reputation: 1188
You can use under your shortcut command:
if WinActive("APPLICATIONNAME")
return
Upvotes: 1