ALWAYS “ON TOP” |
- If you would like to always have Microsip appear in front of other Windows applications you can install an application called AutoHotkey v2
- Script Example:
- Install AutoHotkey.
- Create a script file (e.g., MicrosipAlwaysOnTop.ahk) with:
.
SetTitleMatchMode “2”
Loop {
if WinExist(“Microsip”) {
WinSetAlwaysOnTop true, “Microsip”
}
Sleep 5000
}
.
- Save this as Microsip.ahk and run it with AutoHotkey v2.
|
Feedback
Thanks for your feedback.
Post your comment on this topic.