20200325 2227
00 코딩하면서 찾은 스니펫을 적어두자
#x::ExitApp
; Directives, keywords
#SingleInstance Force
#NoTrayIcon
; Command, literal text, escape sequence
MsgBox, Hello World `; This isn't a comment
; Operators
Bar = Foo ; operators
Foo := Bar ; expression assignment operators
; String
Var := "This is a test"
; Number
Num = 40 + 4
; Dereferencing
Foo := %Bar%
; Flow of control, built-in-variables, BIV dereferencing
if true
MsgBox, This will always be displayed
Loop, 3
MsgBox Repetition #%A_Index%
; Built-in function call
MsgBox % SubStr("blaHello Worldbla", 4, 11)
'[PA] 업무자동화 > [AH]Autohotkey' 카테고리의 다른 글
AH 유틸 Wait Until Image shows up (0) | 2020.03.25 |
---|---|
AH Expression & %% (0) | 2020.03.25 |
AH 엑셀 다루기 (0) | 2020.03.25 |
AH What is it? (0) | 2020.03.25 |
AH Block coding, Visual programming (0) | 2020.03.25 |