从 Dock 中隐藏 Mac 应用程序
我正在尝试创建一个应用程序,其唯一目的是实现 Applescript 字典并扩展 Applescript。 我读过不露面的应用程序(代理),但我的应用程序允许 Applescript 脚本显示一些对话框。
当 Applescript 调用应用程序时,如何避免应用程序图标出现在 Dock 中?
I am trying to create an application with the only purpose to implement a Applescript dictionary, and extend Applescript.
I have read of faceless applications (agents), but my application allows Applescript scripts to show some dialog boxes.
What can I do to avoid my application icon appears in the dock when it is invoked by Applescript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果需要,代理应用程序可以显示对话框。
代理概述 这里提到了这一点。
要设置它,请在
info.plist
文件中将LSUIElement
指定为1
。Agent applications can show dialog boxes if they want to.
The Agent overview here mentions this.
To set it specify
LSUIElement
as1
in yourinfo.plist
file.