making the Windows mouse cursor temporarily dissappear?
Posted: 26 Dec 2011 18:31
Hello, I have a question for the resident batch gurus. I'm not even sure if this is an appropriate forum, but I'm sure like many of you I have fond memories of writing little batch programs "back in the day" so I figured this would be a good place to start
My problem involves running the Nvidia Nalu demo as a screen saver. This is my setup:
I'm using the Screen Launcher "screensaver" which is just a utility to run programs other than .scr files as a screensaver, and it launches run.bat which is:
I then 0'd out the menu graphics (in the Nalu demo) which has gotten me this far:

well as you can see I have an ugly mouse cursor smack in the middle of the screen. sorry for the long exposition, but here finally is my question. is there any way, either through the batch program or an external application, to disable displaying the mouse cursor while the "screensaver" is running?
Thank you for your time.

My problem involves running the Nvidia Nalu demo as a screen saver. This is my setup:
I'm using the Screen Launcher "screensaver" which is just a utility to run programs other than .scr files as a screensaver, and it launches run.bat which is:
Code: Select all
@echo off
c:
cd\
cd Program Files (x86)
cd NVIDIA Corporation
cd NVidia Demos
cd Nalu
cd bin6600
mermaid.exe
exit
I then 0'd out the menu graphics (in the Nalu demo) which has gotten me this far:

well as you can see I have an ugly mouse cursor smack in the middle of the screen. sorry for the long exposition, but here finally is my question. is there any way, either through the batch program or an external application, to disable displaying the mouse cursor while the "screensaver" is running?
Thank you for your time.