You Are Here:

Community: Wiki

This page was last modified on 15 December 2008, at 13:56.

CS001217 - Deleting a contact entry in Flash Lite

From Forum Nokia Wiki



ID CS001217 Creation date December 15, 2008
Platform S60 5th Edition Tested on devices Nokia 5800 XpressMusic
Category Flash Lite Subcategory S60 Platform Services


Keywords (APIs, classes, methods, functions): Service.Contact, contact.Delete()

Overview

The following code snippet demonstrates how to use the Contact Service API in a Flash Lite 3.0 application to delete the first contact of the default phonebook (supported from S60 5th Edition onwards).

Source

// Import Platform Service Interface
import com.nokia.lib.Service;
// Heading of the application
heading_txt.text = "Delete Contact (first of the list)";
 
// Create a new Service object which has Contact data
var contact = new Service("Service.Contact", "IDataSource");
 
// Define the input parameters for the contact list
var inParams = {Type:"Contact"};
 
// Define the result value of the list
var outParams = contact.GetList(inParams);
if (outParams.ErrorCode == 0) {
var outList = outParams.ReturnValue;
var outputEntry = null;
var idList:Array = new Array();
var nameList:Array = new Array();
do {
outputEntry = outList.next();
if (null != outputEntry) {
// Get the lists of IDs and firstname to Arrays
idList.push(outputEntry.id);
nameList.push(outputEntry.FirstName["Value"]);
} else {
break;
}
} while (true);
} else {
// if errors trace them to the textfield
var errorId = outParams.ErrorCode;
text_txt.text += "Error while listing: "+errorId+"\r";
}
 
// Define a list of the IDs which will be deleted
// NOTE! Running this aplication will delete the first contact on your contact
// list
var idDeleteList = [idList[0]];
var contactId = {IdList:idDeleteList};
text_txt.text += "Delete contact, "+nameList[0]+"\r";
 
// Define input parameters for the deletion
var inDeleteParams = {Type:"Contact", Data:contactId};
 
// Define result data of the deletion
var outDeleteParams = contact.Delete(inDeleteParams);
if (outDeleteParams.ErrorCode == 0) {
text_txt.text += "Deletion success"+"\r";
} else {
var errorId2 = outParams.ErrorCode;
text_txt.text += "Error while deleting: "+errorId2;
}

Note: Running this application will delete the first contact on your contact list.

Postconditions

The first contact information is deleted from the default phonebook of the device.

Note! In this code snippet the first entry is automatically deleted without user intervention once the application is started.

Example application

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

See also

Related Wiki Articles

No related wiki articles found

Rate This

 
Bookmark this page: DeliciousDiggFacebookGoogleYahooStumbleUponRedditDiigoTechnocratiTwitter  Share this page Share this page Print this Page Print this page Invite a friend Invite a friend
京ICP备05048969号    Email Newsletters Press Terms & Conditions Privacy Policy Sitemap Contact Us © 2009 Nokia 
RDF Facets: qdcZidentifierQSxhttpE3aE2fE2fwikiE2eforumE2enokiaE2ecomE2findeE78E2ephpE2fCS001256E5fE2dE5fE4caunchingE5fanE5finstalledE5fapplicationE5finE5fFlashE5fE4citeX qdcZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qdcZtypeQUqfntypeZCommunityContentQ qdcZtypeQUqfntypeZE52esourceQ qdcZtypeQUqfntypeZWebpageQ qdcZtypeQUqfntypeZWikiContentQ qdcZtypeQUqmarsZManagedE52esourceQ qdcZtypeQUqwebZInformationE52esourceQ qdcZtypeQUqwebZPageQ qdcZtypeQUqwebZE52esourceQ qdcZtypeQUqrdfsZE52esourceQ qfnZtopicQUqfnTopicZflashQ qfnZtopicQUqfnTopicZflashE5fliteQ qfnZtypeQUqfntypeZCommunityContentQ qfnZtypeQUqfntypeZE52esourceQ qfnZtypeQUqfntypeZWebpageQ qfnZtypeQUqfntypeZWikiContentQ qmarsZlanguageQUxhttpE3aE2fE2fswE2enokiaE2ecomE2flanguageE2d1E2fenX qrdfZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qrdfZtypeQUqfntypeZCommunityContentQ qrdfZtypeQUqfntypeZE52esourceQ qrdfZtypeQUqfntypeZWebpageQ qrdfZtypeQUqfntypeZWikiContentQ qrdfZtypeQUqmarsZManagedE52esourceQ qrdfZtypeQUqwebZInformationE52esourceQ qrdfZtypeQUqwebZPageQ qrdfZtypeQUqwebZE52esourceQ qrdfZtypeQUqrdfsZE52esourceQ