He encontrado un Applescript en el sitio de soporte de apple para ordenar cualquier tipo de contacto con la "Empresa" marca de verificación marcada en un "Negocio" grupo:
property groupName : "Business"
tell application "Contacts"
if (name of groups as list) does not contain groupName then
make new group at end of groups with properties {name:groupName}
end if
repeat with singlePerson in people
if company of singlePerson is true then
if (people of group groupName as list) does not contain (singlePerson as list) then
make new person at end of group groupName with data singlePerson
end if
end if
end repeat
save
end tell
Se produce un error en:
make new person at end of group groupName with data singlePerson
Con el error:
error "Contacts got an error: AppleEvent handler failed." number -10000
¿Alguien sabe de un método para ordenar todos los contactos marcado como "Empresa"?
Por ejemplo yo NO quiero que nadie que tenga un nombre de la empresa, pero es una tarjeta individual:
Pero yo quiero que las empresas con el Company
cuadro de marcado: