[PA] 업무자동화/[AH]Autohotkey

AH 특정시간에 프로그램 종료하기

Weneedu 2023. 6. 15. 02:10

20230614 1307 

 

xh:=13
xm:=10
xs:=00
while(true) {
  sleep 1000
  if(A_Hour=xh && A_Min=xm && A_Sec=xs) {
    MsgBox, hello world!
  }
}
ExitApp
break::ExitApp

저작자표시 (새창열림)