ウィンドウを最小化する
WinMinimize [, WinTitle, WinText, ExcludeTitle, ExcludeText]
引数名 | 説明 |
---|---|
WinTitle | ウィンドウタイトルなど。 ウィンドウ指定の方法参照。 |
WinText | ウィンドウに含まれるテキスト |
ExcludeTitle | 除外タイトル |
ExcludeText | 除外テキスト |
最小化したウィンドウを元に戻すには、WinRestoreコマンドを使う。
一部のウィンドウはこの方法では最小化できない。
代わりに以下の方法を使用すると、最小化できる場合がある。
PostMessage, 0x112, 0xF020,,, WinTitle, WinText ; 0x112 = WM_SYSCOMMAND, 0xF020 = SC_MINIMIZE
Run, notepad.exe WinWait, Untitled - Notepad WinMinimize ; use the window found above ^Down::WinMinimize, A ; Assign a hotkey to minimize the active window.