Answers:
您可以从不想在“生日”日历中看到的联系人中删除生日信息。
做到这一点是通过手动添加你的生日另一种方式做希望看到一个新的或现有的日历,然后禁用生日订阅。
我将脚本修改如下:
(*
This script iterates over your contacts. For each contact, it will delete the contact that has the birthdays
*)
tell application "Contacts"
set peopleToChange to people whose (birth date) is not missing value
repeat with thePerson in peopleToChange
delete ((birth date) of thePerson)
end repeat
save
end tell