일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- EnvDiv
- DetectHiddenWindows
- EnvAdd
- 배열
- Threads
- API
- ControlSend
- SetKeyDelay
- SetControlDelay
- EnvMult
- if(식)
- EnvSet
- ControlGetText
- Blocks
- 식의 설명
- MouseClick
- if
- IfWinExist
- SetMouseDelay
- Menu
- IfInString
- IF (식)
- Var:=식
- 함수
- SetTitleMatchMode
- 식
- autohotkey
- EnvSub
- SetEnv
- StringGetPos
- Today
- Total
목록DetectHiddenWindows (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..
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..
DetectHiddenText 윈도우상의 불가시 컨트롤의 텍스트를 검출 대상으로 할지를 설정DetectHiddenText, On|Off Parameters 인수명 설명 On|Off On 비표시 텍스트를 검출(디폴트) Off 비표시 텍스트는 무시 Remarks 여기서의 설정은, 각종 윈도우 조작 커멘드의 「WinText」 「ExcludeText」(으)로의 성냥에 영향을 준다. HiddenText그렇다고 하는 것은, 윈도우상의 비표시가 되어 있는 컨트롤의 텍스트이다. AutoHotkey동고의AU3_Spy.exe(을)를 사용하면, 어떠한 텍스트가Hidden(이)가 되어 있을까를 알 수 있다. 이 설정의 기본치는, 스크립트의 최초의 AutoExecute섹션그리고 설정한다. hot key등에서 새롭게 기동되었다 ..
ControlMove 컨트롤의 위치와 사이즈를 변경ControlMove, Control, X, Y, Width, Height [, WinTitle, WinText, ExcludeTitle, ExcludeText] Parameters 인수명 설명 Control 컨트롤을 지정. 윈도우 지정의 방법참조. X, Y X좌표와Y좌표를 친윈도우의 좌상으로부터의 상대 위치에서 지정. Width, Height 폭과 높이를 지정. WinTitle 윈도우 타이틀 등. 윈도우 지정의 방법참조. WinText 윈도우에 포함되는 텍스트 ExcludeTitle 제외 타이틀 ExcludeText 제외 텍스트 ErrorLevel 성공시는 「0」, 실패시는 「1」. Remarks To improve reliability, a delay..
#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..