AUTOHOTKEY/레퍼런스
WinSetTitle
님투
2007. 11. 7. 20:20
반응형
WinSetTitle
윈도우의 타이틀을 변경
WinSetTitle, NewTitle WinSetTitle, WinTitle, WinText, NewTitle [, ExcludeTitle, ExcludeText]
Parameters
인수명 | 설명 |
---|---|
WinTitle | 윈도우 타이틀 등. 윈도우 지정의 방법참조. |
WinText | 윈도우에 포함되는 텍스트 |
NewTitle | 새로운 타이틀을 지정 |
ExcludeTitle | 제외 타이틀 |
ExcludeText | 제외 텍스트 |
Remarks
당겨 수를 하나만 지정하면, LastFoundWindow의 윈도우가 당겨 수로 지정한 타이틀이 된다
Related
WinMove, WinGetActiveStats, WinGetActiveTitle, WinGetText, ControlGetText, WinGetPos, WinSet
Example(s)
WinSetTitle, Untitled - Notepad, , This is a new title
; Alternate: Run, notepad.exe WinWaitActive, Untitled - Notepad WinSetTitle, This is a new title ; Uses the window found above by WinWaitActive
반응형