Hello,
There's sometimes a problem when pressing the red Key (End call button) in a Flash application packaged as .sis file. It should exit the application, but it doesn't (no problem when playing the .swf directly).
There is a fix, that I've been using for a long time:
Code:var keyListener:Object = new Object(); keyListener.onKeyDown = function() { if(Key.getCode()=="endcall"){ fscommand2("Quit"); } } Key.addListener(keyListener);
However, I was surprised to discover that it doesn't always work. I've been testing with Remote Device Access, and most of the time it didn't work.
It works on some S60 phones: Nokia 5800, X6 (real device and remote access).
It doesn't work on C6-00 (S60)
It doesn't work on C7 and N8 (Symbian 3)
I use Carbide C++ to create the .sis file.
What's the reason far that to happen? Is there any other way? Have you been facing this problem, using Carbide or any packaging tool?
Thanks a lot.



