對不起,我是一個新手在Applescript & Automator。如何將(AppleScript的)結果返回到下一個工作流?
我已經創建了一個工作流程(使用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的下一步? – fireshadow52 2012-02-13 21:24:37