L'enumerazione dei messaggi nella cartella Bozze di Outlook genera un errore

0

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?

    
posta craig 06.09.2013 - 00:40
fonte

1 risposta

0

La sintassi corretta:

display dialog of the (subject of theMessage as text)
    
risposta data 06.09.2013 - 01:14
fonte

Leggi altre domande sui tag