URL を 1 行ずつ読み取って Safari で開く AppleScript があります。これです:
set thePath to (path to desktop as Unicode text) & "sites.txt"
set theFile to (open for access file thePath)
set theContent to (read theFile)
close access theFile
set theURLs to every paragraph of theContent
tell application "Safari"
repeat with theURL in theURLs
make new document
set URL of front document to theURL
delay 1
repeat until ((do JavaScript "document.readyState" in front document) is "complete")
delay 30
end repeat
close front document
end repeat
end tell
この例では、これらの URL を使用しています。これらの URL は、共有できない私のユース ケースと非常によく似ています。
http://www.omdbapi.com/?t=True%20Grit&y=1969
http://www.omdbapi.com/?t=アバター&y=2009
この AppleScript は私にとっては問題なく動作しますが、リクエストごとにコンテンツをデスクトップの txt ファイルに書き戻すことはできません。
誰でも助けることができますか?