1ª.
x64:
x86:
Esta versión devuelve la posición una sola vez.
2ª
http://www.mediafire.com/?koxk9r3tykf1tad
Esta versión devuelve la posición en un ciclo infinito.
EDITO: Los links me los borran de todos los servers, será mejor que lo conviertan a exe ustedes mismos.
Salu2
El script original desde el cual he compilado la versión x64 es este:
Código
# Python # Script original: http://www.daniweb.com/software-development/python/code/230886/get-the-mouse-position-on-the-screen-on-linux import ctypes as ct import os, time class GetPoint(ct.Structure): _fields_ = [("x", ct.c_ulong), ("y", ct.c_ulong)] def get_mousepos(): pt = GetPoint() ct.windll.user32.GetCursorPos(ct.byref(pt)) return int(pt.x), int(pt.y) os.system('Title Mouse XY coordenates MOD by Elektro H@cker') infinito = 1 while infinito == 1 : time.sleep(0.10) os.system('cls') print( "x=%d, y=%d" % get_mousepos() ) show()
- El script original desde el cual he compilado la versión x86 es este:
Código
# Ruby # Script original: http://www.tobiasbraner.de/2011/07/04/windows-get-the-mouse-position-with-ruby/ require 'Win32API' exit if Object.const_defined?(:Ocra) infinito = 1 getCursorPos = Win32API.new("user32", "GetCursorPos", ['P'], 'V') lpPoint = " " * 8 system('Title MouseXY MOD By Elektro H@cker') while infinito == 1 system('cls') getCursorPos.Call(lpPoint) x, y = lpPoint.unpack("LL") print "X:", x, " Y:", y,"" sleep 0.15 end # Fin