Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Yet Another AppleScript to Stop iTunes from saving to default Library location' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Yet Another AppleScript to Stop iTunes from saving to default Library location
Authored by: Frederico on Jul 23, '04 10:59:27AM
I also use a network volume to centrally store all iTunes Libraries; I use the following script as an iTunes launcher attached to Keyboard Maestro:

set {musicVolume, serverName, userName, userPassword, disksList} to  ¬
{"name of remote volume", "name of remote server", "your user name", "your user password", list disks}
if disksList contains musicVolume then
	log musicVolume & " is mounted"
else
	try
		mount volume musicVolume on server serverName as user name userName with password userPassword
	on error
		display dialog "The iTunes Music Library on volume '" & musicVolume & "' cannot be mounted."
return
	end try
end if
tell application "iTunes" to activate


[ Reply to This | # ]