; ============================================================
; toggle window on top / not on top
; ============================================================
+^u:: ; shift control U
WinGet, ExStyle, ExStyle, A ; get info about active window
if (ExStyle & 0x8) ; 0x8 is WS_EX_TOPMOST. ; if top most
Winset, AlwaysOnTop, off, A ; disable on top
else
WinSet, AlwaysOnTop, on, A ; enable on top
return
Published by
Leave a Reply