제가 윈도10 1909버전을쓰다가 이번에 21H2로 업그레이드했는데 기존에 제작했던 매크로 속도가 느려졌습니다.이미지 서치도아니고 단순 키입력매크로인데 원인을 찾기가 어렵습니다.
조언좀부탁드립니다.
#NoEnv | |
#MaxHotkeysPerInterval 99000000 | |
#HotkeyInterval 99000000 | |
#KeyHistory 0 | |
ListLines Off | |
Process, Priority, , H | |
SetBatchLines, -1 | |
SetKeyDelay, -1, -1 | |
SetMouseDelay, -1 | |
SetDefaultMouseSpeed, 0 | |
SetWinDelay, -1 | |
SetControlDelay, -1 | |
SendMode Input | |
one_frame := 1000/60.0 | |
;테스트용 Ctrl+j 누르면 매크로 동작 | |
^j:: | |
;3+RP | |
SendInput, {Right down}{Down down}{s down} | |
DllCall("Sleep","UInt",one_frame) | |
SendInput, {Right up}{Down up}{s up} | |
DllCall("Sleep","UInt",one_frame) | |
DllCall("Sleep","UInt",one_frame*43.8) | |
;6 | |
SendInput, {Right down} | |
DllCall("Sleep","UInt",one_frame) | |
SendInput, {Right up} | |
DllCall("Sleep","UInt",one_frame) | |
;3+RP | |
SendInput, {Right down}{Down down}{s down} | |
DllCall("Sleep","UInt",one_frame) | |
SendInput, {Down up}{Right up}{s up} | |
DllCall("Sleep","UInt",one_frame) | |
return |