오토핫키 스크립트속도 ; 마우스 이동, 클릭, 드래그에 사용될 마 우스속도 SetDefaultMouseSpeed,0 키보드키 입력 속도 SetKeyDelay,-1 컨트롤 명령 처리 속도 SetControlDelay,-1 스크립트 수행 속도 SetBatchLines -1 윈도우 관련 명령 처리 속도 SetWinDelay,-1 마우스 관련 명령 속도 SetMouseDelay,-1 기타 2023.05.12
넘버키 단축키 매크로 import pyautogui import keyboard import time while True: time.sleep(0.1) while True: if keyboard.is_pressed('Num 1'): pyautogui.write('hello world!') break if keyboard.is_pressed('Num 2'): pyautogui.write('hello world!') break if keyboard.is_pressed('Num 3'): pyautogui.write('hello world!') break if keyboard.is_pressed('Num 4'): pyautogui.write('hello world!') break if keyboard.is_pressed('Num 5.. 프로그래밍언어/Python 2023.05.07