AutoHotKey(오토핫키) 설명서 WinMaximize

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

WinMaximize

윈도우를 최대화한다.

WinMaximize [, WinTitle, WinText, ExcludeTitle, ExcludeText]

Parameters

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

Remarks

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

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

PostMessage, 0x112, 0xF030,,, WinTitle, WinText ; 0x112 = WM_SYSCOMMAND, 0xF030 = SC_MAXIMIZE

Related

WinRestore, WinMinimize

Example(s)

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


^Up::WinMaximize, A  ; Assign a hotkey to maximize the active window.