Advertisement
Nonplussed

Random Autohotkey Utilities (For a pdf-reader & keeping certain windows on top)

May 18th, 2021
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #NoEnv
  2. #Warn
  3. SendMode Input
  4. SetWorkingDir %A_ScriptDir%
  5. #SingleInstance Force
  6.  
  7. Gui, +AlwaysOnTop +Disabled -SysMenu +Owner  ; +Owner avoids a taskbar button.
  8. Gui, Show, NA, _  ; NA = Shows the window without activating it.
  9. Gui, Show, % "x" 0 "y" 1004 "w"A_ScreenWidth "h" 7
  10.  
  11. Loop {
  12.     if WinActive("ahk_class SUMATRA_PDF_FRAME")
  13.         Gui, Show, NA
  14.     else
  15.         Gui, Hide
  16.        
  17.     Sleep, 100
  18. }
  19.    
  20. NumLock:: WinSet, Alwaysontop, Toggle, A
  21.  
  22. ^!+n::
  23.     WinGetClass, class_output, A
  24.     MsgBox, %class_output%
  25.  
  26. *Home::ExitApp
  27. *End::ExitApp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement