Jump to content

A small stuff to hide your screen immediately:D


logmein
 Share

Recommended Posts

Just to hide your current desktop screen from being seen by someone. Just press Alt+Space and you're reading the NY Times or editing a Excel Spreadsheet!

Code here:

#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Outfile=D:Hider.exe
#AutoIt3Wrapper_Outfile_x64=D:Hider64.exe
#AutoIt3Wrapper_Compression=4
#AutoIt3Wrapper_Compile_Both=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
Opt('TrayMenuMode',3)
$about = TrayCreateItem ('&About')
$exit = TrayCreateItem ('&Exit')
HotKeySet ('!{Space}','_go')
HotKeySet ('{esc}','_quit')
While 1
Sleep (100)
$msg = TrayGetMsg ()
Switch $msg
Case $exit
Exit
Case $about
MsgBox (64,'Screen Hider 1.0',StringFormat('SCREEN HIDER 1.0rnAuthor: Minh Thanh Huynh from autoitscript.com/forumrnEmail: minhthanh.autoit@gmail.comrnrnTo immediately change your screen, press Alt+Space and press Esc to quit. Watch your back! :D'))
EndSwitch
WEnd
Func _go()
$img = Random (1,5,1)
SplashImageOn ('',$img & '.bmp',@DesktopWidth,@DesktopHeight,0,0,1)
EndFunc
Func _quit ()
SplashOff ()
EndFunc

And here are some neccessary images: http://www.mediafire.com/?kssbhzyrq1l3d7s

Have fun!^^

P/S: Hmm... My x64 executable file have been detected as a virus by AVG!

Edited by logmein
Link to comment
Share on other sites

^^ I often use Alt+F4 to close YouTube browser windows but it often gives a message prompt and I was caught by my teacher :D

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...