我希望创建一个自定义的 applescript,如果插入的 cd 是空白的,它将自动弹出我的光驱。我是 applescripts 的新手,非常感谢有关如何找到答案的一些输入。
我目前已经创建了数组
set diskName to "disk2"
tell application "Finder"
end tell
其中磁盘 2 是我的光盘驱动器...如果存在任何媒体,我已经能够弹出驱动器,如果存在任何媒体,我已经知道如何安装 cd,但我似乎无法弄清楚它是否存在甚至可以索引媒体,然后在没有数据的情况下弹出。
提前感谢您的任何意见或建议!
我相信我已经找到了某种解决方案
set r to do shell script "/usr/bin/drutil status"
set diskName to "disk2"
if r contains "No Media Inserted" then
do shell script "drutil tray eject"
end if
if r does not contain "No Media Inserted" then
if r contains "blank" then
do shell script "drutil tray eject"
else
tell application "iTunes" to activate
end if
end if