Getting all Podcast Names
-
Comments:
- here.
Here’s a nice little AppleScript I knocked up to grab all of the details of my podcasts, for the previous post:
tell application "iTunes"
set podcastList to {}
repeat with trk in selection
set thisPodcast to album of trk & " • " & artist of trk
if thisPodcast is not in podcastList then
set podcastList to podcastList & thisPodcast
end if
end repeat
end tell
set HTML to "<ul>"
repeat with trk in podcastList
set HTML to HTML & "<li>" & trk & "</li>"
end repeat
set the clipboard to HTML & "</ul>"
Hot Toddy • Mindtrip • Chillout Sessions 8 ★★