1

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
4

1 に答える 1

0

役立つ例を次に示します。

set msg to theContents as text
set AppleScript's text item delimiters to space
set msg to msg as list
repeat with x in items of msg
    if "http" is in x then
        display dialog x
    end if
end repeat
于 2013-08-30T10:53:47.740 に答える