576
Post New Requests Here / Re: DONE: simple app to make a window always stay on top
« Last post by brotherS on March 01, 2007, 10:09 AM »I often want to make a window stay always on top, for instance when I'm copying un-OCR'd text from a scanned PDF document to a word processing document by hand.Hi!-yacht_boy (March 01, 2007, 08:52 AM)
This has been answered here previously, I don't have time to search for the URL, but I'll paste the AHK code below. Win+a is the keyboard combination to enable/disable it. Very simple and helpful when needed.
Also check out https://www.donation...dex.php?topic=1167.0 if you didn't yet.
; Always on Top toggle for active window - originally by wr975 / DonationCoder.com
; --------------------------------------
#a::
WinGet, ExStyle, ExStyle, A
if (ExStyle & 0x8)
{
WinSet,AlwaysOnTop,off,A
TrayTip, AlwaysOnTop, Disabled
}
else
{
WinSet,AlwaysOnTop,on,A
TrayTip, AlwaysOnTop, Enabled
}
sleep 2000
TrayTip
return
; --------------------------------------
#a::
WinGet, ExStyle, ExStyle, A
if (ExStyle & 0x8)
{
WinSet,AlwaysOnTop,off,A
TrayTip, AlwaysOnTop, Disabled
}
else
{
WinSet,AlwaysOnTop,on,A
TrayTip, AlwaysOnTop, Enabled
}
sleep 2000
TrayTip
return

Recent Posts


True, you can't install it locally, but its features and the look and feel of it is just *awesome* IMHO. They also don't have a 'live search' (yet?), but I don't miss that with regard to email.
