`MouseMove A_ScreenWidth, A_ScreenHeight` 没有按预期工作

`MouseMove A_ScreenWidth, A_ScreenHeight` not working as expected

引自the documentation

A_ScreenWidth, A_ScreenHeight: The width and height of the primary monitor, in pixels (e.g. 1024 and 768).

我希望 MouseMove A_ScreenWidth, A_ScreenHeight 将光标移动到屏幕右下角,例如,如果屏幕的分辨率为 1920 x 1080,则光标移动到 (1920, 1080) , 但实际上,光标提示已移动到 (1912, 1072).

有人知道为什么吗?

使用CoordMode before using MouseMove设置坐标模式:

CoordMode Mouse

MouseMove A_ScreenWidth, A_ScreenHeight