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


Click here to return to the 'An AppleScript that does some useful things at startup' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
An AppleScript that does some useful things at startup
Authored by: afvdk on Feb 03, '04 08:44:39AM
My iTunes files are on a mp3 server here, that connects through samba. Hence, I need to mount the server before I can play the files. So I added to the script (before calling iTunes):


tell application "Finder"
activate
mount volume "smb://USERNAME@SERVER/SHARE/"
end tell

where USERNAME, SERVER and SHARE have to be replaced with their respective values for you. Does anyone know howto tell iTunes to play from the whole library, instead of a playlist? Greetings....

[ Reply to This | # ]