URL を含むメッセージを受け取った場合、スクリプトがブラウザでリンクを自動的に開くように、メッセージ用の AppleScript を作成しようとしています。
メッセージのプロパティを含む通知を送信するスクリプトを実行するように設定できましたが、URL に対してアクションを実行する方法をまだ理解できていません。
これが私が作り出すことができたものです:
using terms from application "Messages"
on message received from theSender for theChat with theContents
display notification theContents as text ¬
with title "New Message from " & theSender
end on message received
end using terms