Created
June 14, 2012 14:53
-
-
Save rohinomiya/2930818 to your computer and use it in GitHub Desktop.
AutoHotKey_L でCOMを利用してiTunes を操作する ref: http://qiita.com/items/b628202469f10ea2ca8e
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; control iTunes | |
; | |
iTunes := ComObjCreate("iTunes.Application") | |
#right:: | |
iTunes.NextTrack() | |
return | |
#left:: | |
iTunes.PreviousTrack() | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment