Created
January 23, 2017 08:27
-
-
Save Zazcallabah/8277d6762dad93dfb684cb52d579518e to your computer and use it in GitHub Desktop.
AutoHotkey Script for controlling transparency of windows. I cant remember who made this, saved for future reference
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
; [Win+A] Toggle always on top | |
#a:: Winset, Alwaysontop, , A | |
; [Win+WheelUp] Increase opacity | |
#WheelUp:: | |
DetectHiddenWindows, on | |
WinGet, curtrans, Transparent, A | |
if ! curtrans | |
curtrans = 255 | |
newtrans := curtrans + 8 | |
if newtrans > 0 | |
{ | |
WinSet, Transparent, %newtrans%, A | |
} | |
else | |
{ | |
WinSet, Transparent, OFF, A | |
WinSet, Transparent, 255, A | |
} | |
return | |
; [Win+WheelDown] Decrease opacity | |
#WheelDown:: | |
DetectHiddenWindows, on | |
WinGet, curtrans, Transparent, A | |
if ! curtrans | |
curtrans = 255 | |
newtrans := curtrans - 8 | |
if newtrans > 0 | |
{ | |
WinSet, Transparent, %newtrans%, A | |
} | |
return | |
; [Win+O] Set opacity 50% | |
#o:: | |
WinSet, Transparent, 127, A | |
return | |
; [Ctrl+Win+O] Reset opacity | |
^#o:: | |
WinSet, Transparent, 255, A | |
WinSet, Transparent, OFF, A | |
return |
How would this be adjusted for AHKv2?
thank you!
finally I found a script that actually works
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cheers for this