Obtaining machine ID in Flash Lite
Article Metadata
Code Example
Source file: Media:FlashLite Checking Machine Id.zip
Tested with
Devices(s): Nokia 5800 XpressMusic
Compatibility
Platform(s): S60 5th Edition
Article
Keywords: Service.SysInfo, sysInfo.GetInfo()
Created: User:Nokia Developer KB
(26 Jan 2009)
Last edited: hamishwillee
(10 May 2012)
Contents |
Overview
This code snippet demonstrates how to obtain the Machine ID of the device using the SystemInfo 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 = "Checking Machine Id";
// Create new Service object which has SystemInfo Service data
var sysInfo = new Service("Service.SysInfo", "ISysInfo");
// Define input parameters
var inParams = {Entity:"Device", Key:"MachineId"};
// Retrieve information about a system attribute with a synchronous call
// Define result value
var outParams = sysInfo.GetInfo(inParams);
if (outParams.ErrorCode == 0) {
var systemData = outParams.ReturnValue;
var machineId = systemData.Status;
text_txt.text = "Machine ID: "+machineId;
} else {
var errorId = outParam.ErrorCode;
text_txt.text = "Error: "+errorId;
}
Postconditions
The machine ID is displayed.
Example application
The following example application has been tested in the Nokia 5800 XpressMusic (S60 5th Edition, Flash Lite 3.0).
File:FlashLite Checking Machine Id.zip


(no comments yet)