AutoHotKey(V2~)でマウス座標を表示する
本題
getMousePos.ahk
SetTimer WatchCursor, 100, 0ReturnWatchCursor(){ xpos := 0 ypos := 0 CoordMode "Mouse", "Screen" MouseGetPos &xpos, &ypos ToolTip Format("X{1} Y{2}", xpos, ypos) Return}ESC:: ExitApp
たぶん動くと思います。挙動について解説。
・起動すると裏で