Link to home
Start Free TrialLog in
Avatar of PeggieGreg
PeggieGreg

asked on

Notepad Lock

Hi Experts,

Is there a way to lock Notepad to the front of my screen, bring it forward as such and keep it there. Would be nice to have the option to drop it back if needed.

Reason for this is having lots of applications open, I want to keep notepad at the front even when other applications are clicked.

Peggiegreg
Avatar of D Patel
D Patel
Flag of India image

if you're familiar with Autohotkey, then the following would be able to do what you want.

Run, notepad.exe
WinWaitActive, Untitled - Notepad
  If (ErrorLevel <> 0)
        WinSet, AlwaysOnTop, On         ; set to always-on-top.
You can download the software from here:
http://www.favessoft.com/hotkeys.html
SOLUTION
Avatar of D Patel
D Patel
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ASKER CERTIFIED SOLUTION
Avatar of John Tsioumpris
John Tsioumpris
Flag of Greece image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks
John Tsioumpris for suggesting StickyPad

DPatel for Deskpins

dbrunton for where to get Deskpins from.