2024年03月11日
F1::
获取光标位置(x1, y1)
msgbox % x1 ", " y1
return
获取光标位置(byref x, byref y) {
VarSetCapacity(mi, 24, 0), NumPut(16+A_PtrSize, mi, "int")
DllCall("GetCursorInfo", "Ptr",&mi)
; 获取光标的屏幕坐标
x := NumGet(mi, 8 +A_PtrSize, "int")
y := NumGet(mi, 12+A_PtrSize, "int")
MouseMove , x , y
}