我在一个简单的问题上磕磕绊绊,但却无法绕过头来让它发挥作用。 我尝试使用JAX根据它的ID在Outlook中打开邮件。我知道使用AppleScript它很容易:
tell application "Microsoft Outlook"
open message id msgID
activate
end tell
但我不知道如何在Javascript中转换它:
var outlook = Application("Microsoft Outlook");
outlook.includeStandardAdditions = true;
message = ???? <-- Don't know how to select the message with ID mID
message.open()
答案 0 :(得分:1)
以下是一个例子:
msgID = 76 // example
var outlook = Application("Microsoft Outlook");
outlook.messages.byId(msgID).open()