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