Kodi Community Forum
Win EXE for Full Screen Black (Win 7 x64) - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116)
+--- Thread: Win EXE for Full Screen Black (Win 7 x64) (/showthread.php?tid=190757)



EXE for Full Screen Black (Win 7 x64) - benevida - 2014-03-30

I need to find an exe file that when opened, creates a full screen window (no borders or anything else) that is completely black, (creating, essentially, a black screen). The exe needs to run on Windows 7 x64.

The idea is that when another application in front of it is closed, then it looks like there is just a black screen.

Does anyone know if this exists as a utility anywhere?

Thanks.


RE: EXE for Full Screen Black (Win 7 x64) - baijuxavior - 2014-03-30

Here is an autohotkey script that can blank the screen and hide the mouse pointer. Install autohotkey, rightclick desktop > New autohotkey script. Edit this script in notepad and add the code below, save. Right click the file and compile to get the exe file. Press 'Esc' to close.


http://www.autohotkey.com/board/topic/37016-how-to-create-a-black-screen/

Code:
Gui, Color, black
Gui -Caption
Gui, Show, x0 y0 w%A_ScreenWidth% h%A_ScreenHeight%
WA=%A_screenwidth%
HA=%A_screenheight%
MouseMove, WA, HA ,, R
return
esc::exitapp



RE: EXE for Full Screen Black (Win 7 x64) - benevida - 2014-03-30

Thank you!!