Applescript - El controlador AppleEvent falló en las propiedades establecidas {mensajes visibles:

1

Tengo el siguiente script de manzana bajo Lion, pero devuelve este error Error: -10000. Mail got an error: AppleEvent handler failed. bajo 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

Cualquier ayuda sería apreciada.

    
pregunta apowell656 10.07.2015 - 14:07

1 respuesta

0

De los comentarios ...

Como parece que muchas personas en la red están luchando & al no conseguir que set properties to {visible messages:msgList} funcione, podría ser más simple a la larga mostrar simplemente un recuento de mensajes sin leer / sin etiquetar & opcionalmente, ordenar por marcado y luego no leído para un fácil descubrimiento en la ventana de Correo.

También agregué en la opción 'ordenar por fecha o marcas / no leídas' en el diálogo

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
    
respondido por el Tetsujin 10.07.2015 - 16:02

Lea otras preguntas en las etiquetas