iTunes Control Script

Well it doesn't really control iTunes, just checks that its running, whether its playing, and then returns the name, artist and (if it exists) album names in a string.

# 
#  iTunes Xchat script
#  Returns your currently playing song to Xchat
#  
#  Created by Caius Durling <dev at caius dot name> on 2007-08-11.
#  Copyright 2007 Hentan Software.
#  Licenced under the Creative Commons Attribution-NonCommercial-ShareAlike 2.0 License.
#  
# 
'rubygems''rbosa'"System Events""iTunes""iTunes""playing"
    s = a.current_track
    result = "Now Playing: #{s.artist}"
    result += " - #{s.name}"
    result += " (Album: #{s.album})"#exists
Example 1 -- ruby snippet -- Select Code