Platforms to show: All Mac Windows Linux Cross-Platform

Back to ABAddressBookMBS class.

Previous items

ABAddressBookMBS.kABSocialProfileServiceFlickr as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
One of the values for the social profile dictionary's kABSocialProfileServiceKey key.

Available on Mac OS X 10.7 or later.
Flickr

ABAddressBookMBS.kABSocialProfileServiceKey as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
One of the keys for addressbook record values.

Available on Mac OS X 10.7 or later.
The service for this social profile. Can be kABSocialProfileServiceTwitter, kABSocialProfileServiceFacebook, kABSocialProfileServiceLinkedIn, kABSocialProfileServiceFlickr or kABSocialProfileServiceMySpace.

ABAddressBookMBS.kABSocialProfileServiceLinkedIn as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
One of the values for the social profile dictionary's kABSocialProfileServiceKey key.

Available on Mac OS X 10.7 or later.
LinkedIn

ABAddressBookMBS.kABSocialProfileServiceMySpace as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
One of the values for the social profile dictionary's kABSocialProfileServiceKey key.

MySpace
Available on Mac OS X 10.7 or later.

ABAddressBookMBS.kABSocialProfileServiceSinaWeibo as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 12.3 ✅ Yes ❌ No ❌ No ❌ No Desktop only
One of the values for the social profile dictionary's kABSocialProfileServiceKey key.

SinaWeibo
Available in Mac OS X 10.8 and newer.

ABAddressBookMBS.kABSocialProfileServiceTencentWeibo as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 13.5 ✅ Yes ❌ No ❌ No ❌ No Desktop only
One of the values for the social profile dictionary's kABSocialProfileServiceKey key.

Available on Mac OS X 10.9 or later.
Tencent Weibo

ABAddressBookMBS.kABSocialProfileServiceTwitter as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
One of the values for the social profile dictionary's kABSocialProfileServiceKey key.

Available on Mac OS X 10.7 or later.
Twitter

ABAddressBookMBS.kABSocialProfileServiceYelp as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 14.3 ✅ Yes ❌ No ❌ No ❌ No Desktop only
One of the values for the social profile dictionary's kABSocialProfileServiceKey key.

Available on Mac OS X 10.7 or later.
Yelp

ABAddressBookMBS.kABSocialProfileURLKey as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
One of the keys for addressbook record values.

Available on Mac OS X 10.7 or later.
Service name. Possible values follow.

ABAddressBookMBS.kABSocialProfileUserIdentifierKey as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
One of the keys for addressbook record values.

Available on Mac OS X 10.7 or later.
Service-specific identifier.

ABAddressBookMBS.kABSocialProfileUsernameKey as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
One of the keys for addressbook record values.

Available on Mac OS X 10.7 or later.
User-visible profile name.

ABAddressBookMBS.kABSpouseLabel as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
One of the labels for the related names.

Some examples using this method:

ABAddressBookMBS.kABSuffixProperty as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
The name suffix - kABStringProperty

e.g. "Sr." "Jr." "III"
This property is used for persons only.

Some examples using this method:

ABAddressBookMBS.kABTitleProperty as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
the title of the person - kABStringProperty

e.g. "Sir" "Duke" "General" "Lord"
This property is used for persons only.

Some examples using this method:

ABAddressBookMBS.kABUIDProperty as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
The UID property - kABStringProperty

A property for all records.

Some examples using this method:

ABAddressBookMBS.kABUpdatedRecords as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
One of the keys contained by the user-info dictionary of the notifications posted by the Address Book framework.

Records that have been updated.

ABAddressBookMBS.kABURLsProperty as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
URLs - kABMultiStringProperty
Example
// shows all websites with labels

Var a as new ABAddressBookMBS
Var p as ABPersonMBS = a.owner
Var m as ABMultiValueMBS = p.valueForProperty(a.kABURLsProperty)

Var u as Integer = m.count-1
for i as Integer = 0 to u
Var label as string = m.labelAtIndex(i)
Var value as string = m.valueAtIndex(i)

MsgBox label+" -> "+value
next

This property is used for persons only.

Some examples using this method:

ABAddressBookMBS.kABWorkLabel as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
A generic label.

All kABXXXXWorkLabel are equivalent to this label

Some examples using this method:

ABAddressBookMBS.kABYahooHomeLabel as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
A label for the home yahoo Instant Messaging account.

Some examples using this method:

ABAddressBookMBS.kABYahooInstantProperty as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
Yahoo Instant Messaging - kABMultiStringProperty

This property is used for persons only.
Deprecated in Mac OS 10.7. You should use kABInstantMessageProperty.

Some examples using this method:

ABAddressBookMBS.kABYahooWorkLabel as string

Type Topic Plugin Version macOS Windows Linux iOS Targets
shared method Addressbook MBS MacCocoa Plugin 11.2 ✅ Yes ❌ No ❌ No ❌ No Desktop only
A label for the work yahoo Instant Messaging account.

Some examples using this method:

Previous items

The items on this page are in the following plugins: MBS MacCocoa Plugin.


The biggest plugin in space...