Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
WinGetPos,X,Y,W,H,A space::MsgBox,%H%,%W%,%X%,%Y%
当它运行时,我得到 X 和 y 为 0,并且我得到 hidth 和 width 作为我屏幕的分辨率是。
您是通过双击桌面上的图标还是从全屏窗口启动此脚本?
该WinGetPos命令将在脚本启动后立即运行。当您按空格键时,只会运行消息框,但无论您当时在哪个窗口中,都会始终返回相同的初始值。
WinGetPos
把它改成这个,你应该得到预期的结果:
space:: WinGetPos,X,Y,W,H,A MsgBox,%H%,%W%,%X%,%Y% return