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
| tell application "Contacts" | |
| -- repeat with aPerson in people of group "Test Group" | |
| repeat with aPerson in people | |
| set thePhones to phones of aPerson | |
| if thePhones is not {} then | |
| set errorList to {} | |
| repeat with aPhoneNumber in thePhones | |
| set theNumber to value of aPhoneNumber | |
| try | |
| set value of aPhoneNumber to my getNewNumber(theNumber) |