Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

fhill2

macrumors newbie
Original poster
May 9, 2012
19
0
I need get names of playlists in iTunes by range.
For example:

tell application "iTunes" to name of playlists 3 thru 6

Compiles but execute properly with error:
iTunes got an error: Can’t get name of playlists 3 thru 6

I have made sure there are atleast 6 playlists in itunes.
Thanks.
 
Getting the playlists results in a list that can be indexed like any other, for example:

Code:
tell application "iTunes" to get items 3 thru 6 of (get name of playlists)
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.