tags: AppleScript
, Contacts
这个简单的只有一行的AppleScript,可以返回当前所选联系人的电话号码,比如下面选择的这个联系人:中国银行
它有两个号码,一个标签为work,另一个标签
Contacts.pngtell application "Contacts"
get value of phones of item 1 of (get selection) whose label is "mobile"
-- 这里的 'mobile' 标签表示获取BOC的'手机'的号码,即021-95566
end tell
或者
tell application "Contacts"
get value of phones of item 1 of (get selection) whose label is "work"
-- 同理这里的 'work' 标签表示获取BOC的工作电话,即400 669 5569
end tell
网友评论