Namespaces
Variants
Actions

Archived:Listing logged events in Flash Lite

Jump to: navigation, search
Archived.png
Archived: This article is archived because it is not considered relevant for third-party developers creating commercial solutions today. If you think this article is still relevant, let us know by adding the template {{ReviewForRemovalFromArchive|user=~~~~|write your reason here}}.

We do not recommend Flash Lite development on current Nokia devices, and all Flash Lite articles on this wiki have been archived. Flash Lite has been removed from all Nokia Asha and recent Series 40 devices and has limited support on Symbian. Specific information for Nokia Belle is available in Flash Lite on Nokia Browser for Symbian. Specific information for OLD Series 40 and Symbian devices is available in the Flash Lite Developers Library.

This code snippet demonstrates how to get list of events in the log using the Logging 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 and later

Article
Keywords: Service.Logging, logging.GetList()
Created: User:Nokia Developer KB (26 Jan 2009)
Last edited: hamishwillee (14 May 2013)

Contents

Source

// Import Platform Service Interface
import com.nokia.lib.Service;
// Heading of the application
heading_txt.text = "Retrieving Events from the log";
 
// Create new Service object which has Logging data
var logging = new Service("Service.Logging", "IDataSource");
 
// Define integer for events
var i = 0;
 
// Define filter for input parameters
/*
Event Types:
0 - EKLogCallEventType
1 - EKLogDataEventType
2 - EKLogFaxEventType
3 - EKLogShortMessageEventType
4 - EKLogPacketDataEventType
*/

var filter = {EventType:0};
 
// Define input parameters
var inParams = {Type:"Log", Filter:filter};
 
// define result value
var outParams = logging.GetList(inParams);
var outList = outParams.ReturnValue;
var outputEntry = null;
if (outParams.ErrorCode == 0) {
do {
outputEntry = outList.next();
if (null != outputEntry) {
i++;
var logId = outputEntry.id;
var description = outputEntry.Description;
var eventTime = outputEntry.EventTime;
text_txt.text += i+". Event - "+eventTime+"\rID: "+
logId+"\rDescription: "+description+"\r";
} else {
break;
}
} while (true);
} else {
var errorId = outParams.ErrorCode;
text_txt.text = "Error: "+errorId+"\r";
}
 
// Give user info if there are no call events
if(i==0) {
text_txt.text += "No Call Events!";
}

Postconditions

Time, ID, and description of all call events are displayed.

Example application

The following sample application has been tested in the Nokia 5800 XpressMusic (S60 5th Edition, Flash Lite 3.0): File:FlashLite Retrieving Events from the Log.zip

See also

This page was last modified on 14 May 2013, at 02:59.
254 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