I'm a new user of AutoHotKey and it works great !
I have the following need and I can't find a way to solve it.
I want a window to be always on bottom and I use the following script :
#Persistent SetTimer, CheckBottom, 10 CheckBottom: IfWinExist, MyWindow WinSet, Bottom return
It doesn't works as I want because if I click on this window, it becomes active, topmost, and then goes bottom thanks to this script (and stay active as I want !).
The effect of this is all other displayed windows are flashing !
Is there a way to tell the window to stay bottom and never go topmost even when it is activated ?
Thanks,
Richard.