I am trying to write a hotkey to minimize the current window.

My current attempt is below and it does nothing. I can't see how to make commands like WinMinimize act on the currently acitve window.

<^>!z::
WinMinimize,
return 
link|improve this question

65% accept rate
feedback

1 Answer

up vote 2 down vote accepted

According to the AutoHotkey help file, you can use the letter A to indicate the active window:

WinMinimize, A

link|improve this answer
Ah so it does. Missed that..... – justintime Mar 23 '10 at 16:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.