Entourage Inbox 内で無期限にループし、「未読」メッセージの件名を取得する単純な AppleScript を作成しました。
tell application "Microsoft Entourage"
activate
repeat with eachMsg in messages of folder named "Inbox"
if read status of eachMsg is untouched then
set messageSubject to subject of eachMsg as string
-- bla bla bla
-- How to delete the message and proceed with the next one???
end if
end repeat
さて、問題は、件名を取得した後にメッセージを削除したいということです。これどうやってするの?例を書いていただけますか?
再度、感謝します!