hi,
i start a flash file. from this application i want to launch my own symbian c++ socket server to comunicate with it. the lauch from flash withworks good. but the server starts in forground over my flash application.Code:fscommand("Launch", "Server.exe");
i have triedwhich works well if i only start the server, but not if it called from the flash app.Code:launch = KAppLaunchInBackground;
the second i tried wasbut nothing happens. the server still tarting in foreground.Code:void CServerAppUi::HandleForegroundEventL(TBool aForeground) { CAknAppUi::HandleForegroundEventL(aForeground); TApaTaskList tasklist(iCoeEnv->WsSession()); TApaTask task(tasklist.FindApp(_L("Server"))); task.SendToBackground(); // or BringToForeground() }
has somebody tried the same thing, and is there a way to get my flash app back to the foreground.




