Archived:How to make use of Flash Lite with Symbian C++
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.
Article Metadata
The following code snippet shows the usage of Flash Lite with Symbian C++:
void CMyAppUi::LaunchSwfL( const TDesC &aSwsFileName )
{
TUid KUidFlashApp = { 0x200077D6 };
TDataType dtype(KUidFlashApp);
iHandler = CDocumentHandler::NewL( NULL );
iHandler->SetExitObserver(this);
TInt error = iHandler->OpenFileEmbeddedL( aSwsFileName, dtype );
}


(no comments yet)