import pyautogui as pag
import keyboard
import time
import pyautogui
while True:
if keyboard.is_pressed("F4"): # F4 누른게 감지되면
t1 = pag.position() # 위치 뽑아서 저장
print(t1)
time.sleep(0.5)
break
while True:
if keyboard.is_pressed("F4"):
t2 = pag.position()
print(t2)
time.sleep(0.5)
break
'프로그래밍언어 > 안드로이드' 카테고리의 다른 글
TASKER 태스커 권한부여 (0) | 2022.10.08 |
---|---|
tasker 강제종료 (0) | 2022.05.21 |
파이썬 adb 무선 접속 (0) | 2022.05.21 |
adb 로 이벤트 날리기 (0) | 2022.05.21 |
문자열 숫자열 치환 (0) | 2014.11.27 |