Re: iTunes 2
Re: iTunes 2
- Subject: Re: iTunes 2
- From: garbanzito <email@hidden>
- Date: Wed, 6 Feb 2002 16:12:39 -0700
at 2002 02 06, 15:45 -0500, they whom i call Steven Kreuzer wrote:
I am writing a script that grabs info from a Audio CD. I am able to
get the Artist, Name, Genre, but when it comes to pull the track
names, i keep getting an error trying to put it into a list. below is
a little snippet. Any advice?
not an iTunes issue. you just need to append to the list
instead of trying to set the "item j". (fails because item j
doesn't exist.)
change
set item j of gTrackNames to name of track j of hAudioDisc as list
to
set gTrackNames to gTrackNames & (name of track j of hAudioDisc as list)
--
steve harley email@hidden
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.