Page 1 of 1

[AHK] Make ToDoList transparent

Posted: Sun May 24, 2020 8:15 am
by Niko
I took this script from here https://stackoverflow.com/questions/380 ... ransparent

Code: Select all

^!RButton::
WinGet, currentTransparency, Transparent, A
if (currentTransparency = OFF)
{
    WinSet, Transparent, 150, A
}
else
{
    WinSet, Transparent, OFF, A
}
return
It allows you to make any window transparent. I used it for Timer.
tra.jpg
tra.jpg (5.78 KiB) Viewed 3827 times