自动化程序 applescript if then 操作
在 Automator 中,您可以像这样执行Run Applescript
:
if
然后执行一个操作,然后执行Run Applescript
,如下所示:
end if
这可能吗?下面是一个示例:
是的,我知道您可以使用它来退出 Applescript 中的应用程序我不需要通过操作来做到这一点,但这只是一个例子。
In Automator, can you do a Run Applescript
like this:
if
then an action, then a Run Applescript
like this:
end if
Is this possible? Here is an example:
Yes I know you can get it to quit an application in Applescript and I don't need to do this with an action, but this is just an example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
否 - 每个运行 AppleScript 操作(实际上是任何操作)都是一个单独的实例,因此您需要在同一脚本中执行操作。 Automator 是可编写脚本的,因此您也许可以执行诸如启用/禁用操作之类的操作(我没有尝试过,但操作的启用属性似乎是可设置的)。
No - each Run AppleScript action (any action, actually) is a separate instance, so you will need to do your thing in the same script. Automator is scriptable, so you might be able to do something like enable/disable an action (I haven't tried it, but the enabled property of an action appears to be settable).