Created
April 21, 2015 04:30
-
-
Save andik/b1b1ab204fe36b614edf to your computer and use it in GitHub Desktop.
Wipe all Contact's Birthdays on Mac OS X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- my previous phone miss-synced all my birthday entries to wrong dates | |
-- the first requirement to fix this is to have a white | |
-- canvas again. So removing all birthdays and ask people | |
-- and facebook for adding them again... | |
tell application "Contacts" | |
set peopleToChange to people | |
repeat with thePerson in peopleToChange | |
set the birth date of thePerson to missing value | |
end repeat | |
save | |
end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment