在两个显示器之间移动鼠标

时间:2018-07-10 04:41:19

标签: autohotkey

如何使用键盘快捷键在监视器之间移动鼠标指针?我正在使用自动快捷键。

我没有找到直接的答案,所以这就是我的建议。

1 个答案:

答案 0 :(得分:1)

这是我的方法,为此功能使用Ctrl + Space键:

^Space::
  CoordMode, Mouse, Screen ; This is needed to assure that you get your mouse coordinates related to the screen, not to the window 
  MouseGetPos, MouseX, MouseY
  if( MouseX > 1920) ; 1920 is the Width of my monitor number 1, replace it with yours
  {
    MouseMove, -A_ScreenWidth, 0, 0, R
  }
  else
  {
    MouseMove, A_ScreenWidth, 0, 0, R
  }
return