Archived:Launching an installed application in Flash Lite
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.
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 launch an external application using the Application Manager Platform Service for Flash Lite, supported from S60 5th Edition onwards.
Article Metadata
Code Example
Source file: Media:FlashLite Launch Application.zip
Tested with
Devices(s): Nokia 5800 XpressMusic
Compatibility
Platform(s): S60 5th Edition and later
Article
Keywords: Service.AppManager, appManager.LaunchApp()
Created: User:Nokia Developer KB
(19 Dec 2008)
Last edited: hamishwillee
(14 May 2013)
Contents |
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


(no comments yet)