반응형
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- SetMouseDelay
- MouseClick
- Blocks
- IfInString
- StringGetPos
- Var:=식
- SetTitleMatchMode
- IfWinExist
- 배열
- if
- SetKeyDelay
- 식
- EnvSub
- SetEnv
- if(식)
- 함수
- API
- IF (식)
- DetectHiddenWindows
- ControlSend
- Menu
- 식의 설명
- EnvDiv
- autohotkey
- ControlGetText
- EnvMult
- SetControlDelay
- EnvAdd
- EnvSet
- Threads
Archives
- Today
- Total
ㄴrㅎnㅂrㄹrㄱi
GroupAdd 윈도우의 조건을 윈도우 그룹에 추가한다(그룹이 없으면 만들어진다) 본문
반응형
GroupAdd
윈도우의 조건을 윈도우 그룹에 추가한다(그룹이 없으면 만들어진다)
GroupAdd, GroupName, WinTitle [, WinText, Label, ExcludeTitle, ExcludeText]
Parameters
인수명 | 설명 |
---|---|
GroupName | 그룹명 |
WinTitle | 윈도우 타이틀 등. 윈도우 지정의 방법참조. |
WinText | 윈도우에 포함되는 텍스트 |
Label | GroupActivate실행시에 조건에 일치하는 윈도우가 없었을 때에 실행하는 써브루틴 라벨. |
ExcludeTitle | 제외 타이틀 |
ExcludeText | 제외 텍스트 |
Remarks
윈도우 그룹을 사용하면, 조건에 일치하는 윈도우를 그룹화 해, GroupActivate그리고 그것들을 순서에 액티브화할 수 있다.
또, WinMinimize, WinMaximize, WinRestore, WinHide, WinShow, WinClose, and WinKill의 커멘드에서는,WinTitle에 「ahk_group GroupName」라고 지정하는 것으로, 그룹에 속하는 모든 윈도우를 정리해 조작할 수 있다.
다른 커멘드에서도 「ahk_group」(은)는 사용할 수 있지만, 조건에 일치하는 최선면의 윈도우만이 대상이 된다.
Related
GroupActivate, GroupDeactivate, GroupClose
Example(s)
; In the autoexecute section at the top of the script: SetTitleMatchMode, 2 GroupAdd, MSIE, - Microsoft Internet Explorer ; Add only a single window to this group. return ; End of autoexecute section.
; Assign a hotkey to activate this group, which traverses ;through all open MSIE windows, one at a time (i.e. each ;press of the hotkey). Numpad1:: GroupActivate, MSIE, r
; Here's a more complex group for MS Outlook 2002. ; In the autoexecute section at the top of the script: SetTitleMatchMode, 2 GroupAdd, mail, Message - Microsoft Word ; This is for mails currently being composed GroupAdd, mail, - Message ( ; This is for already opened items ; Need extra text to avoid activation of a phantom window: GroupAdd, mail, Advanced Find, Sear&ch for the word(s) GroupAdd, mail, , Recurrence: GroupAdd, mail, Reminder GroupAdd, mail, - Microsoft Outlook return ; End of autoexecute section.
Numpad5::GroupActivate, mail ; Assign a hotkey to traverse through the group.
반응형
'AUTOHOTKEY > 레퍼런스' 카테고리의 다른 글
GroupDeactivate GroupAdd그리고 정의한 윈도우 그룹에 속하지 않는 윈도우를 순서에 액티브화한다 (0) | 2007.11.05 |
---|---|
GroupClose 액티브 윈도우가GroupActivate(이)나GroupDeactivate그리고 액티브화 된 것이면, 그것을 닫아 그룹의 다음의 윈도우를 액티브화한다.그룹에 속하는 모든 윈도우를 닫을 수도 있다. (0) | 2007.11.05 |
GroupActivate GroupAdd그리고 정의한 윈도우 그룹에 속하는 윈도우를 순서에 액티브화한다 (0) | 2007.11.05 |
Goto 지정한 라벨의 위치에 처리를 점프 한다 (0) | 2007.11.05 |
Gosub 지정 라벨에 점프 해,Return하지만 실행되면 돌아온다 (0) | 2007.11.05 |
Comments