我在一個簡單的問題上磕磕絆絆,但無法設法繞過我的頭並使其工作。 我正在嘗試使用JAX在Outlook中基於它的ID打開一封郵件。我知道,使用AppleScript它的死很容易:JXA .-如何在Outlook中打開基於ID的郵件
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()
這是一個非常棘手的問題❗這應該很容易,但是,除非我錯過了一些明顯的事情,事實並非如此。我做了一些測試,並在幾個JXA板上發佈了一些問題,所以也許我們會得到答案。 – JMichaelTX