Ho trovato un Applescript in sito di supporto di Apple per ordinare qualsiasi contatto con il segno di spunta "Azienda" selezionato in "Affari" "gruppo:
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
Fallisce su:
make new person at end of group groupName with data singlePerson
Con errore:
error "Contacts got an error: AppleEvent handler failed." number -10000
Qualcuno conosce un metodo per ordinare tutti i contatti contrassegnati come "Azienda"?
Ad esempio, NON voglio che chiunque abbia un nome di società, ma sia una singola carta:
MaiovoglioleaziendeconlacasellaCompany
spuntata: