20201117 1007 

 

"autohotkey.com/board/topic/63699-how-do-i-gui-submit-with-key-enter/"

 

Gui, Add, CheckBox, vC1, check box 1
Gui, Add, CheckBox, vC2, check box 2
Gui, Add, Text, x0, KINS Screen
Gui, Add, Edit, vTxt x+10 yp
Gui, Add, Button, Default gBtnRun xm, &Run
Gui, Show, Select Something
return

BtnRun:
  Gui, Submit, hohide
  Gui, Destroy
  
  zOut:=C1*1+C2*2
  if(zOut=1)
   msgbox, check box 1 selected
   
 return

1/ Default를 추가하면 Enter를 통해 단추를 클릭할 수 있다.

2/ &를 앞에 붙이면 Alt+글쇠를 통해 클릭할 수 있다.

'[PA] 업무자동화 > [AH]Autohotkey' 카테고리의 다른 글

AH 창 정렬하기 Arrange Windows, Organize Windows  (0) 2020.12.08
AH showing picture  (0) 2020.12.05
AH Windows 시작프로그램에 등록  (0) 2020.10.17
AH Monitoring Active Window Name  (0) 2020.10.15
AH Bloomberg NY  (0) 2020.10.15
Posted by Weneedu
,


출처: https://privatedevelopnote.tistory.com/81 [개인노트]