在 Applescript 中删除文件而不播放声音?
tell application "Finder"
set deletedfile to alias "Snow Leopard:Users:test.pdf"
delete deletedfile
end tell
问题是我从 Cocoa 应用程序中重复调用此脚本,因此声音也会重复播放。是否可以禁用该声音?
tell application "Finder"
set deletedfile to alias "Snow Leopard:Users:test.pdf"
delete deletedfile
end tell
The problem is I repeatedly call this script from my Cocoa application so the sound is played repeatedly too. Is it possible to disable that sound ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于垃圾箱只是您主文件夹中的一个不可见文件夹,因此您可以执行以下操作...
Since the trash is just an invisible folder inside your home folder you can do this...
一种简单的方法(不移至垃圾箱)
one simple way (doesn't move to Trash)