Created
September 20, 2010 12:16
-
-
Save fogus/587812 to your computer and use it in GitHub Desktop.
This file contains 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
(defn itunes [command] | |
(let [mgr (javax.script.ScriptEngineManager.) | |
engine (.getEngineByName mgr "AppleScript")] | |
(.eval engine (str "tell application \"iTunes\" to " command)))) | |
(itunes 'pause) | |
(itunes 'play) | |
(itunes 'stop) | |
;; ... |
The AppleScriptEngine has been removed in OS X 10.8, but can be restored from 10.7: http://stackoverflow.com/a/12188389/339785
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I found this on on the Internets many months ago, but have lost the attribution. If you know who created this originally please let me know.