Advertisement
Guest User

Media Keys like Mac with AHK autohot keys

a guest
Oct 22nd, 2014
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. ; MEDIA KEYS LIKE MAC
  2. ; Paste into media.ahk and compile. Shortcut in Start menu
  3.  
  4. ;_________________________ F originales: WIN+F* _____________
  5.  
  6.  
  7. #F6::F6 ;WIN+F6=F6 / F6= stop
  8. #F7::F7 ;WIN+F7=F7 / F7= anterior
  9. #F8::F8 ;WIN+F8=F8 / F8= play pause
  10. #F9::F9 ;WIN+F9=F9 / F9= siguiente
  11. #F10::F10 ;WIN+F10=F10 / F10= Mute
  12. #F11::F11 ;WIN+F11=F11 / F11= - volumen
  13. #F12::F12 ;WIN+F12=F12 / F12= + volumen
  14. return
  15.  
  16.  
  17. ;____________ REMAPEO MEDIA KEYS _____________
  18. ;stop
  19. F6::
  20. Send {Media_Stop}
  21. return
  22.  
  23. ;previous song
  24. F7::
  25. Send {Media_Prev}
  26. return
  27.  
  28. ;play/pause
  29. F8::
  30. Send {Media_Play_Pause}
  31. return
  32.  
  33. ;next song
  34. F9::
  35. Send {Media_Next}
  36. return
  37.  
  38. ;mute
  39. F10::
  40. Send {Volume_Mute}
  41. return
  42.  
  43. ;- volumen
  44. F11::
  45. Send {Volume_Down}
  46. return
  47.  
  48.  
  49. ;+ volumen
  50. F12::
  51. Send {Volume_Up}
  52. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement