Always On Top in Windows 10: Difference between revisions
From WikiMLT
mNo edit summary |
mNo edit summary |
||
Line 1: | Line 1: | ||
<noinclude><!--[[Category:Windows_Desktop|?]]-->{{ContentArticleHeader/Windows_Desktop}}</noinclude> | <noinclude><!--[[Category:Windows_Desktop|?]]-->{{ContentArticleHeader/Windows_Desktop}}</noinclude> | ||
= Deploy = | |||
Simple AutoHotkey script that allows you to keep a window on Windows always on top. | |||
Download the executable file and start it. Now you will be able to use <code>Ctrl</code>+<code>Alt</code>+<code>T</code> to keep (or release) a window on top. Tested with Windows 10 and Windows 11. | |||
In order to start the script when you log-in place it in your Windows user's <code>shell:startup</code> [<code>%AppData%\Microsoft\Windows\Start Menu\Programs\Startup</code>] directory. | |||
== Compile == | |||
If you want clone the repository, or just download the .akh file, modify the key combination and compile it for yourself. | |||
. | |||
== References == | |||
* [https://www.groovypost.com/howto/howto/windows-programs-always-on-top/ 3 Ways to Keep a Window Always on Top in Windows 10] | * [https://www.groovypost.com/howto/howto/windows-programs-always-on-top/ 3 Ways to Keep a Window Always on Top in Windows 10] | ||
* [https://autohotkey.com/docs/commands/TrayTip.htm AKH: TrayTip] | * [https://autohotkey.com/docs/commands/TrayTip.htm AKH: TrayTip] |
Revision as of 06:39, 1 September 2022
Deploy
Simple AutoHotkey script that allows you to keep a window on Windows always on top.
Download the executable file and start it. Now you will be able to use Ctrl
+Alt
+T
to keep (or release) a window on top. Tested with Windows 10 and Windows 11.
In order to start the script when you log-in place it in your Windows user's shell:startup
[%AppData%\Microsoft\Windows\Start Menu\Programs\Startup
] directory.
Compile
If you want clone the repository, or just download the .akh file, modify the key combination and compile it for yourself.
.
References