Applescript - Il gestore di AppleEvent non è riuscito sulle proprietà dell'insieme {messaggi visibili:}

1

Ho il seguente applescript che funziona con Lion, ma restituisce questo errore Error: -10000. Mail got an error: AppleEvent handler failed. in Yosemite.

try
tell application "Mail"
    set theViewer to front message viewer
    set theMsg to messages of theViewer
    set msgList to {}
    repeat with thisMsg in theMsg
        if read status of thisMsg is false and flagged status of thisMsg is false then
            set the end of msgList to thisMsg
        end if
    end repeat
    if msgList is {} then
        display dialog "There are no read messages in this mailbox."
    else
        tell theViewer to set properties to {visible messages:msgList}
    end if
end tell
on error the errMsg number the errNmb
if the errNmb is not -128 then
    set the errTxt to "Error: " & the errNmb & ". " & the errMsg
    display dialog the errTxt buttons {"Cancel"} default button 1
else
    error number -128
end if

end try

Qualsiasi aiuto sarebbe apprezzato.

    
posta apowell656 10.07.2015 - 14:07
fonte

1 risposta

0

Dai commenti ...

Come sembrerebbe che molte persone attraverso la rete siano in difficoltà e amp; non riuscendo a ottenere set properties to {visible messages:msgList} a funzionare, potrebbe essere più semplice a lungo termine visualizzare solo un numero di messaggi non letti / non corretti & opzionalmente ordina per flaggato quindi non letto per facilitare la scoperta nella finestra di posta.

Ho aggiunto l'opzione "ordina per data o contrassegna / non letto" anche nella finestra di dialogo

tell application "Mail"
    tell the front message viewer
        set unReadMsgs to every message whose read status is false and flagged status is false
        display dialog ("There are " & (count of unReadMsgs) as string) & ¬
            " Unread/Unflagged messages." buttons {"Sort Unread", "Sort Date"} ¬
            default button "Sort Date" giving up after 300
        set theResult to button returned of result as string
        if theResult is "Sort Date" then
            set properties to {sort column:date received column}
        else if theResult is "Sort Unread" then
            set properties to {sort column:flags column}
            set properties to {sort column:message status column}
        end if
    end tell
end tell
    
risposta data 10.07.2015 - 16:02
fonte

Leggi altre domande sui tag