Bill! It worked! Thanks so much. I'm very pleased. It's exactly what I needed. I needed a list of the Smart Folder which is a list of newly loaded books so I can change the date of the smart folder, burn the backup folder to disc and not lose the information. Now when my friend asks me what's new since she was here I can pull out the printed copy of the backup folder. Thanks again. "Those willing to sacrifice freedom for security deserve neither" — Ben Franklin On Feb 17, 2006, at 1:33 PM, Bill White wrote: > On 2/16/06 9:19 PM, Terry Pogue <tpogue at comcast.net> wrote: > > > I downloaded a nice little applescript which creates a textedit > of all the > > playlists. This is really helpful to me. I would love to be able > to print out > > a list of the tracks within a playlist. Is there an applescript > for that? > > Here’s a simplistic script, Terry. It asks you to choose a specific > playlist and then creates a new TextEdit window with the playlist’s > name and the names of all of its tracks. It would be easy enough to > tweak it to include artists, etc, if you want that info, too. It > would also be easy enough to assemble a large text file containing > all playlists and their corresponding tracks. > > HTH, > > Bill > > ----------------------- > > tell application "iTunes" > > set myPlaylists to name of every playlist > > set thisPlaylist to item 1 of (choose from list myPlaylists > without empty selection allowed and multiple selections allowed) > > set trackNames to name of every track of playlist thisPlaylist > > end tell > > set playlistText to thisPlaylist & return & "--------" > > repeat with i from 1 to count trackNames > > set playlistText to playlistText & return & item i of trackNames > > end repeat > > tell application "TextEdit" to make new document with properties > {text:playlistText} > _______________________________________________