Code for S60 V3:
void CSWF2SISAppUi::LaunchSwfL( const TDesC &aFlashAppName )
{
iHandler = CDocumentHandler::NewL( NULL );
iHandler->SetExitObserver(this);
TUid KUidFlash21 = { 0x200077D6 };
TDataType dtype(KUidFlash21);
TInt error = iHandler->OpenFileEmbeddedL( aFlashAppName, dtype );
}
void CSWF2SISAppUi::HandleServerAppExit (TInt /* aReason */)
{
Exit();
}
Code for S60 FP1:
void CSWF2SISAppUi::LaunchSwfL( const TDesC &aFlashAppName )
{
iHandler = CDocumentHandler::NewL( NULL );
iHandler->SetExitObserver(this);
TUid KUidFlash21 = { 0x200077D6 };
TDataType dtype(KUidFlash21);
TInt error = iHandler->OpenFileEmbeddedL( aFlashAppName, dtype );
}
void CSWF2SISAppUi::NotifyExit (TExitMode aMode)
{
Exit();
}
1 comment:
Great thoughts you got there, believe I may possibly try just some of it throughout my daily life.
Symbian Development
Post a Comment