Namespaces
Variants
Actions
Revision as of 07:21, 3 October 2012 by hamishwillee (Talk | contribs)

Archived:Adding a contact entry in Flash Lite

Jump to: navigation, search

This code snippet demonstrates how to use the Contact Service API in a Flash Lite 3.0 application to add a new contact entry to the calendar. Supported from S60 5th Edition onwards.

Article Metadata

Code Example
Tested with
Devices(s): Nokia 5800 XpressMusic

Compatibility
Platform(s): S60 5th Edition and later

Article
Keywords: Service.Contact, contact.Add()
Created: User:Nokia Developer KB (15 Dec 2008)
Last edited: hamishwillee (03 Oct 2012)

Contents

Source

// Import Platform Service Interface
import com.nokia.lib.Service;
// Heading of the application
heading_txt.text = "Add Contact";
 
// Create a new Service object which has Calendar data
var contact = new Service("Service.Contact", "IDataSource");
 
// Define the Contact Entry (First name and Mobile number)
var Name = {Label:"First Name", Value:"Example"};
var mobile = {Label:"HomeMobile Phone", Value:"9999999999"};
var contactEntry = {FirstName:Name, MobilePhoneHome:mobile};
 
// Define the input parameters
var inParams = {Type:"Contact", Data:contactEntry};
 
// Define the result data
var outParams = contact.Add(inParams);
 
// Check if the add was a success
if (outParams.ErrorCode == 0) {
text_txt.text = "Contact entry added!";
} else {
var errorId = outParams.ErrorCode;
text_txt.text += "\rError: "+errorId;
}

Postconditions

The added contact information can be found from the default phonebook of the device.

Example application

The following sample application has been tested in Nokia 5800 XpressMusic (S60 5th edition, Flash Lite 3.0).
File:FlashLite Add Contact.zip

See also

252 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved