我在 automator 中使用 applescript 来使用 siteucker 下载网站的备份。原来的方法不起作用,所以我联系了siteucker的创建者。原来在当前版本中该功能存在问题,所以他给了我一个苹果脚本来做同样的事情。问题:我对applescript 基本上一无所知,也不明白如何指定我需要下载的URL。
这是给我的脚本:
on run {input, parameters}
tell application "SiteSucker"
activate
-- Create a new document
set front_document to make new document
-- Get the download folder
tell settings of front_document
set download_folder to download folder as alias
set download_folder_path to POSIX path of download_folder
end tell
-- Download the specified URLs
repeat with the_url in input
download the_url
end repeat
-- Wait until the download is finished before continuing
repeat while downloading of front_document
delay 1
end repeat
end tell
return download_folder_path
end run
我尝试联系给我剧本的人,但他们没有回应。我想也许我可以在这些论坛上得到更快的答案。