現在、現在選択されているメッセージを受け取り、メッセージの返信ウィンドウを開く単純な小さな AppleScript があります。
返信からデフォルトの署名を削除するためにこれを行っています。何らかの理由で、Outlook 2011 には返信の署名を除外するオプションがありませんが、このスクリプトを使用すると署名がオフのままになります。
これが私のスクリプトです:
tell application "Microsoft Outlook"
set replyMessage to selection
set replyMessageSubj to subject of replyMessage
reply to replyMessage
end tell
tell application "Finder" to activate (every window whose name is "Re: " & replyMessageSubj)
これにより、再生ウィンドウが開き、アクティブになります。うまく機能しますが、返信だけでなく、すべてに返信してもらいたいです。
Outlook 2011 の辞書には次のように書かれています。
reply to v : Create a reply message.
reply to message : The message to reply to.
[opening window boolean] : Should the reply message be opened in a window? Default is to show the window.
[reply to all boolean] : Whether to reply to all recipients of the message. Default it to reply to the sender only.
→ message : The reply message.
私は AppleScript の初心者で、良い例を見つけることができません...どうすれば全員に返信できますか?