Created
June 21, 2012 11:06
-
-
Save seeker/2965147 to your computer and use it in GitHub Desktop.
Toggle selected window between transparent / opaque
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Toggle selected window between transparent / opaque (alt + shift + t) | |
n=0 | |
!+t:: | |
WinGetActiveTitle, T | |
if n=0 | |
{ | |
WinSet, Transparent, 222, %T% | |
n=1 | |
Exit | |
} | |
WinSet, Transparent, Off, %T% | |
n=0 | |
Exit |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment