2012-03-01 22 views
7

AppleScriptを使用して、Mac用Microsoft Outlook 2011で新しい発信メッセージを作成しようとしています。 次の例は、10.6.8で働いていた:Microsoft Outlookでapplescriptで新しい発信メッセージを作成する

tell application "Microsoft Outlook" 
    set newMessage to make new outgoing message with properties {subject:"Hooray for automation"} 
    make new recipient at newMessage with properties {email address:{name:"Jim Shank", address:"[email protected]"}} 
    open newMessage 
end tell 

ライオンで私は次のエラーを取得しています:

Microsoft Outlook got an error: Can’t make class outgoing message. 

誰が間違ってそこに行きました何の手掛かりを持っていますか?

私はオフラインのOutlookを使用しています。

答えて

2

明らかに、私は期限切れとなっている試用版を使用しています。登録されたバージョンでは、このスクリプトは完全に機能します。ブー・アウトルック...私はこれを数時間見て過ごしました!

-1
tell application "Microsoft Outlook" 
    set newMessage to make new outgoing message with properties {subject:"Hooray for automation"} 
    make new recipient at newMessage with properties {email address:{name:"Jim Shank", address:"[email protected]"}} 
    send newMessage 
end tell 

このようにして、自動的に送信します。

関連する問題