Advertisement
Guest User

Untitled

a guest
Nov 13th, 2015
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. ;KEYBOARD LEGEND
  2. ;---------------
  3. ; # Windows Key
  4. ; ^ ALT
  5. ; + Shift
  6.  
  7.  
  8. #NoEnv
  9. magmin=0
  10. SendMode Input
  11. SetWorkingDir %A_ScriptDir%
  12.  
  13. ;-- Magnifier
  14. !^WheelUp:: sendinput #{NumpadAdd} ;ctrl+alt+mousewheel up sends Winkey + to zoom in
  15. !^WheelDown:: sendinput #{NumpadSub} ;ctrl+alt+mousewheel down sends Winkey - to zoom out
  16. !^Mbutton:: sendinput ^!i ;ctrl+alt+middleclick sends winkey+i to invert toggle
  17. #F12:: ;toggle Magnifier visibility
  18. if magmin=0
  19. {
  20. WinMinimize, ahk_class MagUIClass
  21. WinHide, ahk_class MagUIClass
  22. magmin=1
  23. }
  24. else
  25. {
  26. WinShow, ahk_class MagUIClass
  27. magmin=0
  28. }
  29. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement