일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ControlGetText
- IfInString
- if
- IF (식)
- EnvAdd
- 함수
- SetControlDelay
- Blocks
- DetectHiddenWindows
- Menu
- EnvSet
- EnvMult
- 식
- 식의 설명
- autohotkey
- Threads
- SetTitleMatchMode
- StringGetPos
- SetKeyDelay
- EnvDiv
- MouseClick
- SetEnv
- Var:=식
- ControlSend
- if(식)
- SetMouseDelay
- EnvSub
- API
- 배열
- IfWinExist
- Today
- Total
목록IfWinExist (13)
ㄴrㅎnㅂrㄹrㄱi
IfWinActive / IfWinNotActive 조건에 일치하는 윈도우가 존재할지로 분기IfWinActive [, WinTitle, WinText, ExcludeTitle, ExcludeText] IfWinNotActive [, WinTitle, WinText, ExcludeTitle, ExcludeText] hwnd:=WinActive("WinTitle", "WinText", "ExcludeTitle", "ExcludeText") Parameters 인수명 설명 WinTitle 윈도우 타이틀 등. 윈도우 지정의 방법참조. WinText 윈도우에 포함되는 텍스트 ExcludeTitle 제외 타이틀 ExcludeText 제외 텍스트 Remarks IfWinActive하지만 진이었다고 나무나IfWinNo..
Process 특정의 프로세스가 존재하는지 체크하거나 우선도를 변경하거나 종료시키거나 한다Process, Exist, PID-or-Name Process, Close, PID-or-Name Process, Priority, PID-or-Name, NewPriority Process, Wait, PID-or-Name, Seconds Process, WaitClose, PID-or-Name, Seconds Parameters 인수명 설명 Cmd 이하의 커멘드명의 어떤 것인지를 지정 Exist PID-or-Name그리고 지정한 프로세스가 존재하면, ErrorLevel 에PID하지만 격납된다. PID-or-Name하지만 생략 되었을 경우는, 스크립트 자신의PID하지만 격납된다. Close 프로세스를 강제 종료한..
IfWinExist / IfWinNotExist 조건에 일치하는 윈도우가 존재할지로 분기IfWinExist [, WinTitle, WinText, ExcludeTitle, ExcludeText] IfWinNotExist [, WinTitle, WinText, ExcludeTitle, ExcludeText] hwnd:=WinExist("WinTitle", "WinText", "ExcludeTitle", "ExcludeText") Parameters 인수명 설명 WinTitle 윈도우 타이틀 등. 윈도우 지정의 방법참조. WinText 윈도우에 포함되는 텍스트 ExcludeTitle 제외 타이틀 ExcludeText 제외 텍스트 Remarks IfWinExist하지만 진이었다고 나무나IfWinNotExist..
Else If계의 커멘드로 조건에 일치하지 않았을 때의 동작을 지정Else Remarks If커멘드와 조건에 일치했을 때에 실행시키고 싶은 커멘드(혹은 블록)에 이어else(을)를 사용하면, 조건에 일치하지 않았을 때에 실행시키고 싶은 동작을 기술할 수 있다. else의 후에는 스페이스에서 단락지어(콤마는 아니다)실행시키고 싶은 커멘드를 기술할 수 있다. 「{」(은)는 「else{」(와)과 같이 스페이스를 비우지 않고 기술해도 좋다. 「else if...」라고 하도록(듯이) 하고,A(이)가 아니고B(이)라면……이라고 하는 분기를 기술할 수도 있다. Related See Blocks. Also, every IF-command can use ELSE, including IfWinActive, IfWinExi..
#IfWinActive / #IfWinExist hot key를 특정의 윈도우의 액티브/존재시만 유효하게 되도록(듯이) 설정한다#IfWinActive [, WinTitle, WinText] #IfWinExist [, WinTitle, WinText] #IfWinNotActive [, WinTitle, WinText] #IfWinNotExist [, WinTitle, WinText] Parameters 인수명 설명 WinTitle 윈도우 타이틀등의 조건을 지정. 윈도우 지정의 방법참조. 다만, 윈도우 타이틀과ahk_class,ahk_group, 그러한 복수 조건의 동시 지정만 유효. ahk_id(와)과ahk_pid(은)는, 일단 기능하지만, 미리 알아 둘 수 없기 때문에 거의 의미가 없다. 「%VarNam..