Facebook Sync 应用程序在我的 Mac 地址簿联系人的地址字段中填写了他们所在的城市。拥有大量地址无用的人使得人们很难在谷歌地图应用程序上进行搜索(最终滚动浏览了很多人——我只想看到那些输入了正确地址的人)。
我想使用 applescript 清除通讯录中的所有家庭住址字段。我写了一些小东西但无法让它工作,可能需要知道applescript的人的帮助:)
tell application "Address Book"
repeat with this_person in every person
repeat with this_address in every address of this_person
if label of this_address is "home" then
remove this_address from addresses of this_person
end if
end repeat
end repeat
end tell
我试图从其他脚本中推断出多个地址/电话的逻辑,但只能找到添加它们,而不是删除它们。
谢谢!:)