WinGetPos
您可以动态使用和设置 XY 坐标,而不是使用可能在其他屏幕尺寸上表现不同的固定位置。为防止用户使用Atl+切换时鼠标“冻结”,Tab您可以仅在游戏运行时通过选中 来锁定鼠标IfWinActive
。我没有选择等待 100 毫秒的循环,而是选择了 100 毫秒的计时器来调用脚本,但使用循环或 while 也可以。
SetTitleMatchMode, 2
SetTimer, CheckWin, 100
CheckWin:
{
IfWinActive, YourAppNameHere ; ONLY runs when Your App is Active
{
WinGetPos, XStart, YStart, Width, Height, YourAppNameHere ; Use AHK Window Spy
XPos:=XStart+(Width/2)
YPos:=YStart+(Height/2)
MouseMove, %XPos%, %YPos%, 90
Return
}
}
^F1:: ; Ctrl+F1 to stop the timer based loop
SetTimer, CheckWin, Off
Return
这是另一个解决方案:
#SingleInstance Force
#installKeybdHook
#Persistent
Xbutton2:: ; Toggle fix mouse in Center
Confine := !Confine
ClipCursor( Confine, A_ScreenWidth/2, A_ScreenHeight/2, A_ScreenWidth/2, A_ScreenHeight/2 )
Return
ClipCursor( Confine=True, x1=0 , y1=0, x2=1, y2=1 )
{
VarSetCapacity(R,16,0), NumPut(x1,&R+0),NumPut(y1,&R+4),NumPut(x2,&R+8),NumPut(y2,&R+12)
Return Confine ? DllCall( "ClipCursor", UInt,&R ) : DllCall( "ClipCursor" )
}