ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Post New Requests Here

DONE: make a window always stay on top

<< < (2/2)

brotherS:
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.
-yacht_boy (March 01, 2007, 08:52 AM)
--- End quote ---
Hi!

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.donationcoder.com/forum/index.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

yacht_boy:
Thanks all!  Don't know how this stuff didn't turn up when I searched the forums. 

I'm trying winroll now, seems easy enough, if that doesn't work I'll do the AHK thing and/or try gridroll.

Jason

yacht_boy:
Finally got the hang of winroll, it looks pretty useful. 

I like gridmove, and I could see the utility if I had dual monitors or even one decent sized monitor, but on my little 17" jobbie it's not quite as useful.   Just another reason for me to get a couple of 22" widescreen LCDs when I win the lottery!

Will have to check out AHK, hadn't used it before. 

Thanks again, all!

hamradio:
Surprised no one has mentioned this one but...

There is also FileBox eXtender which went free because it is not supported under Windows Vista. So if you need it for XP or Older machines, then it should work.  :)

rjbull:
Quoting TinyApps Misc page:


Showin 2.0 [9k] Enable windows that have been disabled, unhide hidden windows and force windows to stay on top or be placed below others. Perhaps one of the most popular uses of this program is to display hidden password editbox fields (text behind the asterisks *****).
http://www.foundstone.com/knowledge/termsofuse.html?filename=showin.zip

PushPin 1.0 [22k] Keep any window on top of all other windows. 
http://rosafamily.org/software/pushpin/

Nail It! v1.10 [25k] + Make windows"sticky" so that they remain above
other windows.
http://www.pier7.net/dojo/Nail-It.htm

PowerMenu 1.5.1 [49k] + Adds "Always On Top", "Minimize To Tray", "Priority" and "Transparency" (W2K/XP only) sub menus to all top level system menus.
http://www.veridicus.com/tummy/programming/powermenu/


--- End quote ---

[Edit to add an afterthought:]
PowerPro can also make windows stay on top, and can be set to watch for a particular windows' appearance and "pin" it automatically (same with AHK I think).  You might find this even more useful than a program that always needs to be set manually.

I should add that the problem I have with "pinning" windows is that doing so usually stops Kleptomania (text scraper) working.  It seems to be unable to "see" the window if it's been pinned.


Navigation

[0] Message Index

[*] Previous page

Go to full version