PDA

View Full Version : slow the speed of the mouse



omega36
28th October 2008, 18:46
hy to all,
I search how to slow the speed of the mouse with c + + code,
if you have any ideas ... :)

thanks

wysota
28th October 2008, 20:28
How about running this code?

while(1);
You can slow any device with it, not only the mouse ;)

Seriously I don't think there is a way to do it in a general way.

maverick_pol
28th October 2008, 21:52
If the "slowing down" of the mouse is needed to slow down cursor movement you can develop your own cursor and make it react a bit slower; you widget would handle mouse move event not every sec, etc.

Just an idea.

omega36
29th October 2008, 10:58
ok thanks :)