capturing relative mouse movement without fullscreen

hi all,

ive been trying to capture relative mouse movement by resetting the pointer to center of window, but if the mouse moves too fast, it jumps out of the window. i haven’t found any solution to this in the forum yet - does anyone know if there is one?

thanks!

Have you tried setting the mouse mode to “relative”? If not, try it like so:

        wp = WindowProperties()
        wp.setMouseMode(WindowProperties.MRelative)
        wp.setCursorHidden(True)
        base.win.requestProperties(wp)

does mrelative function completely now for windows os? tried this but didn’t seem to help…

I don’t think relative mode works on Windows.

Same for me

so i found a lib that allowed me to replace getmouse

code.google.com/p/pymultimouse/