[오토핫키] GUI 핫키 설정 예시
오토핫키2018. 5. 2. 11:40
Gui, Show, x10 y10 w170 h130, 예시
Gui, Add, Button, x100 y10 w65 h115 gend, 설정완료클릭
gui, Add, text, x10 y15 cred, send
gui, add, edit, x50 y10 w40 h20 vn1,입력글씨입니다.@
gui, Add, text, x10 y45 cblue, Sleep
gui, add, edit, x50 y40 w40 h20 vn2,500
gui, Add, text, x10 y75, 시작키
gui, add, hotkey, x50 y75 w40 h20 vh1, F7
gui, Add, text, x10 y105, 중지키
gui, add, hotkey, x50 y105 w40 h20 vh2, F8
return
end:
gui submit, nohide
Hotkey, %H1%, start
msgbox, 시작키 적용완료
i=1
Hotkey, %H2%, break
msgbox, 중지키 적용완료
return
start:
Loop
{
sendinput %n1%
sleep %n2%
if i=2
{
i=1
break
}
}
return
break:
i=2
return
mbutton::exitapp
'오토핫키' 카테고리의 다른 글
[오토핫키] 네이버 요일 웹툰 제목과 매칭되는 클래스ID 파싱 (0) | 2019.02.27 |
---|---|
[오토핫키] 한글 OCR (0) | 2019.02.08 |
[오토핫키] 내 컴퓨터 열기 (0) | 2018.04.25 |
[오토핫키] 간단한 암호화 복호화 (1) | 2018.04.20 |
[오토핫키] 세개 이상 핫키 조합하기 (0) | 2018.04.19 |