编一段autohotkey的脚本实现:鼠标移动到特定位置每一分钟进行左键单击操作
#Persistent #SingleInstance, Force
SetTimer, ClickTimer, 60000 return
ClickTimer: MouseClick, left, 500, 500 return
; 鼠标移动到特定位置 #F1:: MouseMove, 500, 500 return
; 终止脚本 #Esc::ExitApp
原文地址: https://www.cveoy.top/t/topic/fe28 著作权归作者所有。请勿转载和采集!