AutoHotKey(오토핫키) 설명서 WinMinimize

Posted by 발전소장
2014. 8. 14. 14:32 AutoHotKey/Commands

WinMinimize

윈도우를 최소화한다

WinMinimize [, WinTitle, WinText, ExcludeTitle, ExcludeText]

Parameters

인수명설명
WinTitle 윈도우 타이틀 등.
윈도우 지정의 방법참조.
WinText 윈도우에 포함되는 텍스트
ExcludeTitle 제외 타이틀
ExcludeText 제외 텍스트

Remarks

최소화한 윈도우를 바탕으로 되돌리려면 ,WinRestore커멘드를 사용한다.

일부의 윈도우는 이 방법에서는 최소화할 수 없다.
대신에 이하의 방법을 사용하면, 최소화할 수 있는 경우가 있다.

PostMessage, 0x112, 0xF020,,, WinTitle, WinText ; 0x112 = WM_SYSCOMMAND, 0xF020 = SC_MINIMIZE

Related

WinRestore, WinMaximize

Example(s)

Run, notepad.exe
WinWait, Untitled - Notepad
WinMinimize ; use the window found above


^Down::WinMinimize, A  ; Assign a hotkey to minimize the active window.