Sunday, February 15, 2015

Autohotkey script to toggle minimize/restore?


I am looking for a script to toggle between minimize and restore for Windows 7.


Answer



Toggling between Minimize and Restore doesn't make much sense as you'll need the Window in focus (or some other way) to send it the command.


Assuming you really mean toggle between Maximize and Restore...


I have these in my AutoHotkey.ahk. You'll be interested in the "F3" mapping which really is Ctrl-Shift-3 in my setup.



;-----------------------------------------------------------------------------------
; Shortcut keys to Minimize, Maximize/Restore the current Window {{{1
; Meant to operate as the 3 right buttons on the window
;
; Alt-F2 = AutoHotkey
; Alt-F3 = AutoHotkey
; Alt-F4 = Default Windows
; +----------------------------------------------------+
; | [_] [ ] [X] |
; +----------------------------------------------------+
; | |
; | |
;-----------------------------------------------------------------------------------
!F2:: WinMinimize, A
!F3::
WinGet MX, MinMax, A
If MX
WinRestore A
Else WinMaximize A
return
^+2:: WinMinimize, A
^+3::
WinGet MX, MinMax, A
If MX
WinRestore A
Else WinMaximize A
return
^+4:: WinClose, A

No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...