Python win32api not moving mouse cursor in VirtualBox

Posted by wes on Stack Overflow See other posts from Stack Overflow or by wes
Published on 2010-12-26T07:43:12Z Indexed on 2010/12/26 7:54 UTC
Read the original article Hit count: 200

Filed under:
|
|

I'm trying to use this Python code:

import math
for i in xrange(500):
    x = 500 + math.sin(math.pi * i / 100) * 500
    y = 500 + math.cos(i) * 100
    x, y = int(x), int(y)
    win32api.SetCursorPos((x, y))
    time.sleep(.01)

taken from here to move the mouse cursor in an XP VirtualBox. The mouse icon will flicker to the appropriate graphic (when it hits the edge of a window it turns into the <-> resize image, for instance), but it doesn't actually move the visible cursor. I can move the mouse around while the code is running. Same result using the ctypes example in the above link. It works fine in the Win7 host.

I have Guest Additions installed, if that matters.

© Stack Overflow or respective owner

Related posts about python

Related posts about winapi