You Are Here:

Community: Wiki

This page was last modified on 19 December 2008, at 12:43.

CS001252 - Listing messages in Flash Lite

From Forum Nokia Wiki



ID CS001252 Creation date December 19, 2008
Platform S60 5th Edition Tested on devices Nokia 5800 XpressMusic
Category Flash Lite Subcategory Messaging


Keywords (APIs, classes, methods, functions): Service.Messaging, messaging.GetList()

Overview

This code snippet demonstrates how to list messages in Inbox using the Messaging Platform Service for Flash Lite, supported from S60 5th Edition onwards.

Source

// Import Platform Service Interface
import com.nokia.lib.Service;
// Heading of the application
heading_txt.text = "List messages (Inbox)";
 
// Create a new Service object which has Messaging data
var messaging = new Service("Service.Messaging", "IMessaging");
 
// Define input parameters
var inParams = {Type:"Inbox"};
 
// Define result value
var outParams = messaging.GetList(inParams);
if (outParams.ErrorCode == 0) {
// Go through all messages at Inbox and trace sender, message type and
// body text to the text field
var outList = outParams.ReturnValue;
var outputEntry = null;
var i = 0;
do {
outputEntry = outList.next();
if (null != outputEntry) {
i++;
var sender = outputEntry.Sender;
var messageType = outputEntry.MessageType;
var contentText = outputEntry.BodyText;
text_txt.text += "Message "+i+"\rSender: "+sender+
"\rType: "+messageType+"\rContent: "+contentText+"\r";
} else {
break;
}
} while (true);
} else {
var errorId = outParams.ErrorCode;
text_txt.text += "Error: "+errorId;
}

Postconditions

Sender, message type, and body text of all messages in the Inbox are displayed.

Example application

The following sample application has been tested in Nokia 5800 XpressMusic (S60 5th edition, Flash Lite 3.0).
File:FlashLite List Messages.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: qdcZidentifierQSxhttpE3aE2fE2fwikiE2eforumE2enokiaE2ecomE2findeE78E2ephpE2fCS001251E5fE2dE5fE44eletingE5faE5fmessageE5finE5fFlashE5fE4citeX qdcZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qdcZtypeQUqfntypeZCommunityContentQ qdcZtypeQUqfntypeZE52esourceQ qdcZtypeQUqfntypeZWebpageQ qdcZtypeQUqfntypeZWikiContentQ qdcZtypeQUqmarsZManagedE52esourceQ qdcZtypeQUqwebZInformationE52esourceQ qdcZtypeQUqwebZPageQ qdcZtypeQUqwebZE52esourceQ qdcZtypeQUqrdfsZE52esourceQ qfnZtopicQUqfnTopicZflashQ qfnZtopicQUqfnTopicZflashE5fliteQ qfnZtopicQUqfnTopicZmessagingQ qfnZtypeQUqfntypeZCommunityContentQ qfnZtypeQUqfntypeZE52esourceQ qfnZtypeQUqfntypeZWebpageQ qfnZtypeQUqfntypeZWikiContentQ qfnZuserE5ftagQSxmessagingX qmarsZlanguageQUxhttpE3aE2fE2fswE2enokiaE2ecomE2flanguageE2d1E2fenX qrdfZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qrdfZtypeQUqfntypeZCommunityContentQ qrdfZtypeQUqfntypeZE52esourceQ qrdfZtypeQUqfntypeZWebpageQ qrdfZtypeQUqfntypeZWikiContentQ qrdfZtypeQUqmarsZManagedE52esourceQ qrdfZtypeQUqwebZInformationE52esourceQ qrdfZtypeQUqwebZPageQ qrdfZtypeQUqwebZE52esourceQ qrdfZtypeQUqrdfsZE52esourceQ