Abrir grupo de contactos en Mac

0

Solo quiero usar AppleScript para abrir un grupo existente en la Libreta de direcciones de Mac (v7.1).

tell application "Contacts"
    set selected of group "friend" to true
    activate
end tell

arriba es el código de ejemplo de lo que quiero.

    
pregunta reallulo 11.08.2013 - 16:06

2 respuestas

1

Probablemente este no sea el mejor código de Apple, pero funcionó para enumerar a las personas en un grupo específico (en 10.8 león de montaña).

tell application "Contacts"
    activate
    set grp to first group where (name = "friend")
    tell grp
        get people
    end tell
end tell
    
respondido por el Zhora 12.08.2013 - 23:32
0

La secuencia de comandos anterior solo funciona si el grupo con el nombre 'amigo' realmente existe. De lo contrario, la instrucción 'set grp to first ...' falla. Por lo tanto es más seguro escribir

tell application "Contacts"
  activate
  if group "friend" exists then
    set grp to first group where (name = "friend")
    tell grp
      get people
    end tell
  end if
end tell
    
respondido por el Andreas Fischlin 30.12.2018 - 12:59

Lea otras preguntas en las etiquetas