IRRemote.ahk 799 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. ; Hotkeys für IR Remote
  2. ; * beliebige weitere taste
  3. ; ^ CTRL
  4. ; ! ALT
  5. ; # windows key
  6. ; + SHIFT
  7. ;
  8. ; #^!F1::
  9. ; ;MsgBox You pressed Win+Strg+Alt+F1
  10. ; Return
  11. ;
  12. ; #^!F2::
  13. ; ;MsgBox You pressed Win+Strg+Alt+F2
  14. ; Return
  15. ;
  16. ; #^!F3::
  17. ; ;MsgBox You pressed Win+Strg+Alt+F3
  18. ; Return
  19. ;
  20. ; #^!F4::
  21. ; ;MsgBox You pressed Win+Strg+Alt+F4
  22. ; Return
  23. ;
  24. ; #^!F5::
  25. ; ;MsgBox You pressed Win+Strg+Alt+F5
  26. ; Return
  27. ;
  28. ; #^!F6::
  29. ; ;MsgBox You pressed Win+Strg+Alt+F6
  30. ; Return
  31. ;
  32. ; #^!F7::
  33. ; ;MsgBox You pressed Win+Strg+Alt+F7
  34. ; Return
  35. #^!F8::
  36. ;MsgBox You pressed Win+Strg+Alt+F8
  37. Run, switchToApp.ahk SPOTIFY
  38. Return
  39. ; #^!F9::
  40. ; MsgBox You pressed Win+Strg+Alt+F9
  41. ; Return
  42. #^!F10::
  43. ;MsgBox You pressed Win+Strg+Alt+F10
  44. Run, switchToApp.ahk KODI
  45. Return