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

Archived:Listening for incoming messages in Flash Lite

Jump to: navigation, search

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

MultiMediaTile.png
Article Metadata

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

Compatibility
Platform(s): S60 5th Edition

Article
Keywords: Service.Messaging, messaging.RegisterNotification()
Created: User:Nokia Developer KB (19 Dec 2008)
Last edited: hamishwillee (03 Oct 2012)

Contents

Source

Note.png
Note: RegisterNotification() is an asynchronous method.
// Import Platform Service Interface
import com.nokia.lib.Service;
// Heading of the application
heading_txt.text = "Listening for incoming messages";
 
// Create a new Service object which has Messaging data
var messaging = new Service("Service.Messaging", "IMessaging");
 
var inParams = {Type:"NewMessage"};
messaging.RegisterNotification(inParams,onNotify);
function onNotify(transactionID:Number, eventID:String, outParam:Object) {
if (outParam.ErrorCode == 0) {
// New message got!
var messageheader = outParam.ReturnValue;
var sender = messageheader.Sender;
var bodyText = messageheader.BodyText;
var messageType = messageheader.MessageType;
var messageId = messageheader.MessageId;
text_txt.text = "Message received! \rId: "+messageId+"\rSender: "+
sender+"\rType: "+messageType+"\rMessage: "+bodyText;
} else {
var errorId = outParam.ErrorCode;
text_txt.text = "Error: "+errorId;
}
}

Postconditions

Indentification, sender, message type, and body text information of the received message are displayed.

Example application

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

See also

196 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