default.txt 469 B

123456789101112131415161718192021222324
  1. ; hotkeys and hotstrings
  2. #a::WinSet, AlwaysOnTop, Toggle, A
  3. #Space::
  4. MsgBox, Percent sign (`%) need to be escaped.
  5. Run "C:\Program Files\some\program.exe"
  6. Gosub, label1
  7. return
  8. ::btw::by the way
  9. ; volume
  10. #Numpad8::Send {Volume_Up}
  11. #Numpad5::Send {Volume_Mute}
  12. #Numpad2::Send {Volume_Down}
  13. label1:
  14. if (Clipboard = "")
  15. {
  16. MsgBox, , Clipboard, Empty!
  17. }
  18. else
  19. {
  20. StringReplace, temp, Clipboard, old, new, All
  21. MsgBox, , Clipboard, %temp%
  22. }
  23. return