1 2 3 4 5 6 7 8 9 10 | require 'Win32API' getCursorPos = Win32API.new("user32", "GetCursorPos", ['P'], 'V') lpPoint = " " * 8 # store two LONGs getCursorPos.Call(lpPoint) x, y = lpPoint.unpack("LL") # get the actual values print "x: ", x, "\n" print "y: ", y, "\n" # hf ;) |
Windows: Get the mouse position with Ruby
This entry was posted in Allgemeines. Bookmark the permalink.