0
votes

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.

1

1 Answers

1
votes

You can use under your shortcut command:

if WinActive("APPLICATIONNAME")
    return

Documentation here