Hi,
We're using FL4 on Symbian^3 and recently ported our app to E6 platform. App is packed in a WRT widget. While closing app we're using this code in FL4
exitApp() is defined in WRT side as follows:Code:btnExit.addEventListener(MouseEvent.CLICK, function(e:MouseEvent):void { var u:URLRequest = new URLRequest("javascript:exitApp();"); navigateToURL(u); } );
Now, this works in C7 S^3, but not on E6. Does somebody know the problem or should we report a bug?Code:function exitApp() { if (confirm("Close App?")) { window.close(); } }



