I would like to write an AppleScript that would allow me to launch iTunes with a given Library instead of having to hold down the Option key and browsing for one. I'm already aware of Doug's Library manager, which is not quite what I want. The AppleScript would be for a specific library.
|
|
|
|
|
|
|
iTunes doesn't allow you to do this with AppleScript, but you can write directly into iTunes' preferences, where it stores an alias to the currently selected library (or nothing, if you're using a library in the default location). First, you'll need to obtain the alias data for your selected library location. Open iTunes holding down the Option key, select your library and quit iTunes. Then, in Terminal, run:
This will copy the library alias data to the clipboard. Finally, here's the script:
Paste the library location between the quotes in the first line of the script, and you should be all set. To return to the original library, uncomment the line including |
||
|
|
