Re: iTunes help
Re: iTunes help
- Subject: Re: iTunes help
- From: Chris Garaffa <email@hidden>
- Date: Mon, 20 Dec 2004 23:55:55 -0500
On Dec 20, 2004, at 11:21 PM, Richard Darenberg wrote:
I'm a newby to Applescript but I'm looking for a way to check iTunes
for a shared library and if it's there
select a playlist from that shared library.
Hi Rick,
This will give you a list of all the name of all playlists on the first
shared library that iTunes is currently connected to
--Tested with iTunes 4.7
tell application "iTunes"
set theSource to first item of every source whose kind is shared
library
name of every playlist of theSource
end tell
The list of playlists will begin with the name of the shared library
itself.
When you say, "select a playlist from that shared library," what
exactly do you want to do? Have iTunes show the tracks of the shared
library? Or do you mean play that playlist?
Hope this helps...
--
Chris Garaffa
email@hidden
http://incessant.nilzero.com
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
References: | |
| >iTunes help (From: Richard Darenberg <email@hidden>) |