- Joined
- Feb 25, 2007
- Messages
- 194
- Reaction score
- 12
- Points
- 18
- Location
- Lancaster PA
- Your Mac's Specs
- G3 iMac 400Mhz, 512Mb RAM,10GB HDD
Is anyone familiar with AppleScripts? I'm using one for a now-playing for xchat... I use an alias to execute the script and output it into the active channel...
Here's my script:
Pretty simple, right? It works excellent for tracks ON my computer... When I play the iTunes radio it outputs something like this
How could I make it output the track title and artist? It clearly shows them in iTunes...
neye:
Here's my script:
Code:
tell application "iTunes"
"Now playing: " & artist of current track ¬
& " - " & name of current track
end tell
Pretty simple, right? It works excellent for tracks ON my computer... When I play the iTunes radio it outputs something like this
Code:
"Now playing: missing value - Alt X Radio"
How could I make it output the track title and artist? It clearly shows them in iTunes...