2009年10月15日木曜日

BDRemoconをAutoHotkeyでカスタマイズする Bookmark and Share

BDRemoconをAutoHotkeyでカスタマイズしてみます。

Windows Media Player、iTunes、VLC メディアプレイヤー で、再生・停止・送り・戻し などを
制御できるようにします。

  1. GroupAdd, MonsterTV, ahk_class TApplication  
  2. GroupAdd, MonsterTV, ahk_class TFormVideo  
  3. GroupAdd, MonsterTV, ahk_class TFormEPG  
  4.   
  5. GroupAdd, WMPlayer, ahk_class WMPlayerApp  
  6. GroupAdd, WMPlayer, ahk_class WMPTransition  
  7. GroupAdd, WMPlayer, ahk_class WMP Skin Host  
  8.   
  9.   
  10. ;;  
  11. ;; Windows Media Player  
  12. ;;  
  13. #IfWinActive ahk_group WMPlayer  
  14.   +^F13::Send ^p                          ; PLAY    : Play and Pause WMP  
  15.   +^F14::Send ^p                          ; PAUSE   : Play and Pause WMP  
  16.    ^F24::Send ^s                          ; STOP    : Stop WMP  
  17.   +^F18::Send ^f                          ; NEXT    : Next Track WMP  
  18.   +^F15::Send ^b                          ; PREV    : Prev Track WMP  
  19.   +^F17::Send +^f                         ; SCAN    : Forward  
  20.   +^F16::Send +^b                         ; SCAN    : Rewind  
  21.    ^F17::Send !{Return}                   ; DISPLAY : FullScreen  
  22.   
  23. ;;  
  24. ;; iTunes  
  25. ;;  
  26. #IfWinActive ahk_class iTunes  
  27.   +^F13::PostMessage 7930917504       ; PLAY  : Play and Pause iTunes  
  28.   +^F14::PostMessage 7930917504       ; PAUSE : Play and Pause iTunes  
  29.    ^F24::PostMessage 7930851968       ; STOP  : Stop iTunes  
  30.   +^F18::PostMessage 7930720896       ; NEXT  : Next Track iTunes  
  31.   +^F15::PostMessage 7930786432       ; PREV  : Prev Track iTunes  
  32.   
  33. ;;  
  34. ;; VLC media player  
  35. ;;  
  36. #IfWinActive VLC ahk_class QWidget  
  37.    ^F22::Send n                           ; START   : Next Title  
  38.   +^F13::Send {Space}                     ; PLAY    : Play and Pause WMP  
  39.   +^F14::Send {Space}                     ; PAUSE   : Play and Pause WMP  
  40.    ^F24::Send s                           ; STOP    : Stop WMP  
  41.   +^F18::Send +n                          ; NEXT    : Next Track WMP  
  42.   +^F15::Send +p                          ; PREV    : Prev Track WMP  
  43.   +^F16::Send !{Left}                     ; SCAN<<  : Slow  
  44.   +^F17::Send !{Right}                    ; SCAN>>  : Fast  
  45.    ^F17::Send {F11}                       ; DISPLAY : FullScreen  
  46.   
  47. #IfWinActive  

0 件のコメント: