寻找一个鼠标左键autoclick脚本,可能是Powershell

时间:2017-02-23 16:36:26

标签: powershell

与Ubuntu中的悬停点击选项类似。用嵌套if else语句循环思考无限循环。如果鼠标移动,则无需单击并睡眠2秒,否则请单击鼠标左键并休眠直至鼠标再次移动。工作环境需要,所以如果可能的话,Powershell将是最好的。有人有主意吗?谢谢!

1 个答案:

答案 0 :(得分:0)

这会将光标向后对角移动。每2秒转发一次。

Add-Type -AssemblyName System.Windows.Forms

do {
  $pos = [System.Windows.Forms.Cursor]::Position
  $pos.X--; $pos.Y--; [System.Windows.Forms.Cursor]::Position = $pos
  Start-Sleep -Seconds 2
  $pos = [System.Windows.Forms.Cursor]::Position
  $pos.X++; $pos.Y++; [System.Windows.Forms.Cursor]::Position = $pos
  Start-Sleep -Seconds 2
}
while ($true)