我正在运行下面的代码,我希望当我点击逗号时鼠标会移动到当前活动窗口的中心.....而不是移动到屏幕上的不同点,具体取决于窗口在屏幕。只有当窗口位于左上角 (x=0, y=0) 时,它才会正确居中鼠标。
#NoEnv
SendMode Input
#WinActivateForce
Sysget, Mon2, Monitor, 2
,::
WinGetActiveStats, Title, Width, Height, X, Y
{
MsgBox, The active window "%Title%" is %Width% wide`, %Height% tall`, and positioned at %X%`,%Y%.
;center_x:=X+(Width*.5)
;center_y:=Y+(Height*.5)
MouseMove, X+(Width*.5), Y+(Height*.5), 90
}
Return