我想编写一个 AppleScript,它允许我使用给定的库启动 iTunes,而不必按住 Option 键并浏览一个。我已经知道 Doug 的图书馆经理,这不是我想要的。AppleScript 将用于特定的库。
问问题
5816 次
2 回答
11
iTunes 不允许您使用 AppleScript 执行此操作,但您可以直接写入 iTunes 的首选项,在其中将书签(别名)存储到当前选定的库(如果您在默认位置使用库,则不存储任何内容) )。
首先,您需要获取所选库位置的别名数据。按住 Option 键打开 iTunes,选择您的资料库并退出 iTunes。然后,在终端中,运行:
defaults read com.apple.itunes 'book:1:iTunes Library Location' | pbcopy
这会将库别名数据复制到剪贴板。
最后,这是脚本:
property otherLibraryLocation : "" -- paste location between the quotes
property libraryLocationPref : "com.apple.iTunes 'book:1:iTunes Library Location'"
-- first, quit iTunes if it's running
tell application "System Events"
if exists (application process "iTunes") then
tell application "iTunes" to quit
end if
end tell
-- then, set the location
do shell script "defaults write " & libraryLocationPref & " " & quoted form of otherLibraryLocation
-- uncomment the following line to use the default iTunes library instead
-- do shell script "defaults delete " & libraryLocationPref
-- finally, relaunch iTunes
tell application "iTunes" to activate
将库位置粘贴在脚本第一行的引号之间,您应该已经设置好了。要返回原始库,请取消注释包括defaults delete
.
于 2009-11-07T18:33:40.317 回答
3
您可以在 unix shell 脚本 (man ln) 中创建从 ~/Music/iTunes 到您选择的目录路径的符号链接。AppleScript 可以通过向终端应用程序发送适当的消息来调用 unix shell 脚本。
于 2011-07-19T20:40:49.300 回答