You Are Here:

Community: Wiki

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

CS001256 - Launching an installed application in Flash Lite

From Forum Nokia Wiki



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


Keywords (APIs, classes, methods, functions): Service.AppManager, appManager.LaunchApp()

Overview

This code snippet demonstrates how to launch an external application 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 the input parameters. In this case the camera application will be launched.
var inParams = {ApplicationID:"s60uid://0x101F857A"};
 
// Define result value
var outParams = appManager.LaunchApp(inParams);
 
// Check if launch was a success
if (outParams.ErrorCode == 0) {
text_txt.text += "Camera launched!";
} else {
var errorId = outParams.ErrorCode;
text_txt.text += "\rError: "+errorId;
}

Postconditions

This code launches the camera application of the device (Nokia 5800 XpressMusic).

Example application

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