1

我在 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

我尝试联系给我剧本的人,但他们没有回应。我想也许我可以在这些论坛上得到更快的答案。

4

1 回答 1

1

你不需要玩他们给你的applescript。

将脚本放入新的“运行 Applescript”操作(覆盖默认内容)

并在其上方添加一个“获取指定的 URLS”Automator Action。

将您的网址添加到“获取指定的网址”自动化操作中。

在此处输入图像描述

于 2013-07-23T16:18:58.163 回答