Stick-It! v1.00.0b

dmg on 27 May 2013
  • 428KB (uncompressed)
  • Released on
  • Suggested by dmg

Stick-It! lets you set any window you choose to be always on top of other windows. Right click the tray icon and select the Stick-It! menu item, or double click the icon, and the next window you click will be set as always on top. Repeat these steps to return the window to normal.

Written in AutoHotkey

Category:
Runs on:WinXP / Vista / Win7
Writes settings to: None
Dependencies: May require elevated user privileges to work on certain windows.
Stealth: ? Yes
License: Freeware/Open Source
How to extract: Download the ZIP package and extract to a folder of your choice. Launch Stick-It!.exe.

3 comments on Stick-It!  The Portable Freeware Collection Latest Entries Feed

webfork 2012-05-08 23:23

Idjo: very cool, thanks

V1.00.0b

dmg 2012-05-06 22:42

I believe if you look at the Stick-It! source code you will see that I use almost that exact code. But Stick-It! is nice and shiny, and has audio visual effects! Besides, most people do not use AutoHotkey and releasing it as a compiled exe greatly broadens the potential user base.

V1.00.0b

Idjo 2012-05-06 21:49

Why not simply use an AutoHotKey script?
Here is an example for setting WinKey + A to toggle always-on-top:

#a::
WinGet, currentWindow, ID, A
WinGet, ExStyle, ExStyle, ahk_id %currentWindow%
if (ExStyle & 0x8) ; 0x8 is WS_EX_TOPMOST.
Winset, AlwaysOnTop, off, ahk_id %currentWindow%
else
WinSet, AlwaysOnTop, on, ahk_id %currentWindow%
return

V1.00.0b

Post your comment