boxmein

Hides the taskbar with Win+Space

Dec 30th, 2012
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;; Source: http://www.autohotkey.com/board/topic/83594-how-to-hide-taskbar-with-hotkey/?p=532637
  2. #Space:: ; Alt+T
  3.     WinExist("ahk_class Shell_TrayWnd")
  4.  
  5.     t := !t
  6.  
  7.     If (t = "1") {
  8.         WinHide, ahk_class Shell_TrayWnd
  9.         WinHide, Start ahk_class Button
  10.     } Else {
  11.         WinShow, ahk_class Shell_TrayWnd
  12.         WinShow, Start ahk_class Button
  13.     }
  14. return
Advertisement
Add Comment
Please, Sign In to add comment