8.21.2013

Taking CTRL-\ completely out of my vocabulary

#SCRIPT ~ Taking CTRL-\ completely out of my vocabulary ;- ;AutoIt Script is wicked cool
#NoTrayIcon
;-
; hook ctrl\ display message
HotKeySet("^\","NoCtrlBackSlash")
While 1 
   Sleep(100)
WEnd
;-
Func NoCtrlBackSlash()
   msgbox(4096+48,@ScriptName,"Please don't press this!",5)
   WinActivate("C:\Documents and Settings\mbee\My Documents\$.Michael.T.Bee\","")
   WinFlash("C:\Documents and Settings\mbee\My Documents\$.Michael.T.Bee\","",5,500)   
EndFunc