Created
April 25, 2014 18:43
-
-
Save dreamalligator/11299214 to your computer and use it in GitHub Desktop.
A basic Autohotkey script to make windows always on top..
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Always on Top | |
; https://gist.github.com/digitalvapor | |
; press CTRL+Space to toggle a window to always on top. | |
; Winset: http://ahkscript.org/docs/commands/WinSet.htm | |
; WinSet, Attribute, Value [, WinTitle, WinText, ExcludeTitle, ExcludeText] | |
; If you are going to make another window on-top that was 'ran as admin', then you'll want to run your autohotkey script as admin too. | |
^SPACE:: Winset, AlwaysOnTop, Toggle, A |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment