Skip to content

Instantly share code, notes, and snippets.

@dennisreimann
Last active October 11, 2015 15:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dennisreimann/3881455 to your computer and use it in GitHub Desktop.
Save dennisreimann/3881455 to your computer and use it in GitHub Desktop.
AppleScript snippet to delete contact notes in Address Book
tell application "Address Book"
activate
set thePeople to selection
repeat with thePerson in thePeople
set note of thePerson to ""
end repeat
save
end tell
@dennisreimann
Copy link
Author

New comment test

@dennisreimann
Copy link
Author

Test 1

@dennisreimann
Copy link
Author

Test 2

@dennisreimann
Copy link
Author

Test 3

@dennisreimann
Copy link
Author

Test 4

@dennisreimann
Copy link
Author

Test 5

@dennisreimann
Copy link
Author

Test 6

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment