Namespaces
Variants
Actions
Revision as of 07:40, 1 August 2012 by hamishwillee (Talk | contribs)

Archived:Listing installed applications in Flash Lite

Jump to: navigation, search
Article Metadata

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

Compatibility
Platform(s): S60 5th Edition

Article
Keywords: Service.AppManager, appManager.GetList()
Created: User:Nokia Developer KB (19 Dec 2008)
Last edited: hamishwillee (01 Aug 2012)

Contents

Overview

This code snippet demonstrates how to list all installed applications using the Application Manager 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 of applications";
 
// Create a new Service object which has Application manager data
var appManager = new Service("Service.AppManager", "IAppManager");
 
// Define input parameters
var inParams = {Type:"Application"};
 
// Define result value
var outParams = appManager.GetList(inParams);
if (outParams.ErrorCode == 0) {
// go through all applications and trace captions to the textarea
var outList = outParams.ReturnValue;
var outputEntry = null;
do {
outputEntry = outList.next();
if (null != outputEntry) {
var caption = outputEntry.Caption;
text_txt.text += "- "+caption+"\r";
} else {
break;
}
} while (true);
} else {
var errorId = outParams.ErrorCode;
text_txt.text += "Error: "+errorId;
}

Postconditions

Captions of all installed applications 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 Applications.zip

See also

162 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