반응형

오토 핫키 반복 실행 예)

오토핫키 반복문 결과


 

/::                                 ; '/' 키를 눌렀을 때 실행되는 테스트 루프
{

   Send, this is test   ; "this is test"를 출력
   sleep 500               ; 0.5초 대기

   Send, {return}        ; 엔터(Enter) 키 입력

Loop 5                      ; 5번 반복
{
  Send, test loop       ; "test loop"를 출력
  sleep 500                ; 0.5초 대기

  Send, {return}          ; 엔터(Enter) 키 입력
  sleep 100                 ; 0.1초 대기
}

    Return                    ; 이 명령 종료
}


 

 

 

 

반응형

+ Recent posts