Vorrei enumerare i messaggi nella cartella "Bozze" di Outlook.
Quando eseguo questo script:
tell application "Microsoft Outlook"
set theMessages to every message in the drafts
--returns 1
display dialog of (count of theMessages)
repeat with theMessage in theMessages
display dialog of the class of theMessage -- displays 'inm'
display dialog of the subject of theMessage -- error here
end repeat
end tell
Viene visualizzato un errore che legge Microsoft Outlook got an error: Can’t make subject of outgoing message id 15002 into type string.
.
Sembra che theMessage
sia l'ID del messaggio, anche se class
è 'inm' (supponendo che questo significhi messaggio di posta in arrivo).
Se lancio theMessage
su Message
:
display dialog of the subject of (theMessage as message)
Ho ricevuto un errore diverso: Can’t make «class inm » id 15492 of application "Microsoft Outlook" into type message.
Che cosa non capisco?