【发布时间】:2012-02-15 00:41:15
【问题描述】:
对不起,我是 Applescript 和 Automator 的新手。
我已经创建了一个工作流程(使用 Applescript)从某个网站获取快照(通过 Firefox+附加“页面保护程序”+热键)。 但我希望将图像传递到工作流程的下一步以进行另一个流程。
接下来我该怎么做?
tell application "Firefox"
open location "http://xxx.xxx.xxx"
activate
tell application "System Events"
keystroke "d" using {control down}
-- take snapshot
end tell
delay 2
close every window of application "Firefox"
tell application "System Events"
keystroke return
end tell
end tell
【问题讨论】:
-
工作流中的下一步是另一个 AppleScript 吗?
标签: applescript automator