automator で applescript を使用して、sitesucker を使用して Web サイトのバックアップをダウンロードしています。元の方法ではうまくいかなかったので、sitesucker の作成者に連絡しました。現在のバージョンではその機能に問題があったことが判明したため、彼は同じことを行うためのアップルスクリプトをくれました。問題: 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
スクリプトをくれた人に連絡してみましたが、返事がありません。これらのフォーラムでより迅速な回答が得られるのではないかと考えました。