In AutoHotKey, I am having trouble. I need this to work:
$Alt & w::Send ^w
I feel like this should be super simple, but it fails no matter how I try to rejigger the shortcut/hotkey side of the code (e.g. {$Alt}, ${Alt}, etc).
Note 1: I am unable to simply use "!w::Send ^w" because the "alt" keypress will trigger the program (menu?) such that it closes the entire thing, and not just the active window. So I need the $ over there.
Note 2: "$Alt" by itself works just fine, but in combo with the "w" key, it fails.