If you work on Windows 7, you might have noticed that the add gadgets window has a nice translucent look to it.
How about if you can make just about any window transparent? Here is how you can do it!
You will need a software: AutoHotkey - available as a free download AutoHotkey Download
After installing, open up anotepad window and type the following script:
How about if you can make just about any window transparent? Here is how you can do it!
You will need a software: AutoHotkey - available as a free download AutoHotkey Download
After installing, open up a
Code:
n=0
!+t::
WinGetActiveTitle, T
if n=0
{
WinSet, Transparent, 222, %T%
n=1
Exit
}
WinSet, Transparent, Off, %T%
n=0
Exit
Save the file with a .ahk extension. After saving it,
go to the location from windows explorer,
right click on it and select Run Script
To toggle transparency on any window, use Shift+Alt+t hotkey
0 comments:
Post a Comment