[AHK] Make ToDoList transparent

A place to post your ideas and solutions for how best to make use of the software

Moderators: abstr, Niko

Post Reply
Niko
Posts: 239
Joined: Wed Sep 18, 2019 6:48 am

[AHK] Make ToDoList transparent

Post by Niko » Sun May 24, 2020 8:15 am

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 3826 times

Post Reply