MarkSchofer
4 years agoFrequent Contributor
Programming Around A Screen Saver
I tried two different methodologies.
i have a routine that moves the mouse occasionally. Each loop in my process. I then call this simple routine.
==========================
def MoveMouse():
Sys.Desktop.MouseX = Sys.Desktop.MouseX + 1
========================
As well as
Win32API.SystemParametersInfo(Win32API.SPI_SETSCREENSAVEACTIVE, False,"Null",0);
=======================
In theory they should work. They do not. I get no error.