2
我寫了一個簡短的Applescript將選定的郵件移動到該郵箱的相關存檔。但是,當它運行時不再有選擇。 (如果我按上或下,它會選擇整個郵箱中的第一封或最後一封郵件)。我無法解決如何使用AppleScript選擇當前選擇之外的下一條消息。只要接近選擇(即將消失),我並不介意「next」是前後的消息。如何在使用Applescript的郵件中選擇外部的下一條消息?
如果有幫助,這是我的AppleScript:
tell application "Mail"
set selectedMessages to selection
repeat with theMessage in selectedMessages
set theAccount to account of mailbox of theMessage
set read status of theMessage to true
set mailbox of theMessage to mailbox "_old" of theAccount
end repeat
end tell