: Currently I use Windows 98. On Windows 98 you can use the following technique: Setup your job as a script to run all day every minute In the script put something like the following Dim bActive, boolean // Win API constant: SPI_GETSCREENSAVERRUNNING = 60 Call "user32.dll", "SystemParametersInfo", "uuBu", FALSE, 60, 0, bActive, 0 ifThen bActive, DO_SOMETHING ..... if bActive is TRUE then it indicates that the screen saver is running
|