Reputation: 502
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: 602
Reputation: 1153
You can use under your shortcut command:
if WinActive("APPLICATIONNAME")
return
Upvotes: 1