How do I copy the name of the song currently playing on an internet radio station in iTunes?
I frequently feel like Googling, YouTubing, or downloading some song playing on an internet radio station. Mac OS X's iTunes displays the song information, but doesn't provide any obvious route to copying the song's author, name, etc.
I'm not interested if the iTunes Store offers relevant features because I always keep the iTunes Store disabled in parental controls.
Solution 1:
Use this AppleScript to copy the current stream title to the clipboard:
tell application "iTunes"
set stream_title to (get current stream title)
end tell
set the clipboard to stream_title
display dialog stream_title & " copied to clipboard." -- delete line to omit dialog
To install it as iTunes script, copy & paste the above into the AppleScript Editor and save it under Library/iTunes/Scripts
in your home folder, giving it a sensible name, such as Copy Stream Title to Clipboard
. Create the Scripts
folder if it doesn't exist. This will make iTunes grow a little script icon in it's menu bar where you can select the script.