What's new

How do I hide the mouse in full screen?

deathace

New member
I've seen plenty of Youtube videos of people running Demul fullscreen with no mouse cursor so I know there must be a way to get rid of it. Can someone help me?
 

Agozer

16-bit Corpse | Moderator
Which video plugin are you using? The problem might have to do with your video card drivers as well; it's not like the developers intentionally coded fullscreen to show the mouse cursor.
 

evilantal

New member
Use an AutoHotkey script to move the mouse pointer off screen after a timeout.

Something like

Code:
Sleep 5000
MouseMove, 999, 999, 0
 

Top