반응형
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
- EnvAdd
- SetControlDelay
- if
- Threads
- 식의 설명
- SetTitleMatchMode
- MouseClick
- DetectHiddenWindows
- 함수
- EnvSet
- IF (식)
- API
- IfInString
- 배열
- ControlSend
- EnvDiv
- Menu
- Var:=식
- if(식)
- EnvSub
- ControlGetText
- Blocks
- 식
- StringGetPos
- autohotkey
- EnvMult
- SetEnv
- SetKeyDelay
- SetMouseDelay
- IfWinExist
Archives
- Today
- Total
ㄴrㅎnㅂrㄹrㄱi
IfWinActive / IfWinNotActive 조건에 일치하는 윈도우가 존재할지로 분기 본문
반응형
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하지만 진이었다고 나무나IfWinNotActive하지만 가짜였다고 와, 조건에 일치한 윈도우는LastFoundWindow(으)로서 기억된다.
편입 함수WinActive()(은)는, 해당 윈도우가 액티브한 때, 그 윈도우의 핸들을 돌려준다.
Related
SetTitleMatchMode, DetectHiddenWindows, Last Found Window, IfWinExist, WinActivate, WinWaitActive, WinWait, WinWaitClose
Example(s)
IfWinActive, Untitled - Notepad { WinMaximize, A ; "A" indicates the active window. Send, Some text.{Enter} return }
반응형
'AUTOHOTKEY > 레퍼런스' 카테고리의 다른 글
정규 표현 (0) | 2007.11.05 |
---|---|
RegExMatch() 문자열중으로부터 정규 표현 패턴에 일치하는 개소를 검색해, 위치를 돌려준다 (0) | 2007.11.05 |
RegDelete 레지스트리의 키나 값을 삭제한다 (0) | 2007.11.05 |
Random 의사 난수를 생성 (0) | 2007.11.05 |
Progress / SplashImage progress bar나 스플래쉬 이미지의 윈도우를 표시·갱신한다 (0) | 2007.11.05 |
Comments