[AutoHotkey] Gui 상하좌우

Gui, Add, DropDownList, x9 y38 w100 h20 vA, up|down|right|left ;
; Generated using SmartGUI Creator 4.0
Gui, Show, x491 y277 h100 w123, 
return


F5::


{
gui,submit,nohid
if (A = "up")
if (A = "down")
if (A = "right")
if (A = "left")
sleep 100
send {F1}
send {%A%}
sleep 100
send {Esc}
sleep 1000
send {ctrl down}
send {x}
send {ctrl up}
send {F1}
send {%A%}
send {Esc}
}
return


F6::Pause


이렇게

gui,submit,nohid
if (A = "up")
if (A = "down")
if (A = "right")
if (A = "left")