[AHK] Make ToDoList transparent
Posted: Sun May 24, 2020 8:15 am
I took this script from here https://stackoverflow.com/questions/380 ... ransparent
It allows you to make any window transparent. I used it for Timer.
Code: Select all
^!RButton::
WinGet, currentTransparency, Transparent, A
if (currentTransparency = OFF)
{
WinSet, Transparent, 150, A
}
else
{
WinSet, Transparent, OFF, A
}
return