I have Flash Lite 3.0 installed on my N95 and I can't get the softkeys working.
I've searched a lot and here's a part from my code:
Whenever I press the left softkey it brings up the flash menu even though it is fullscreen, and when I press right softkey it quits. The screen orientation is standard (240x320, didn't mess with it in any way)PHP Code:fscommand2("SetSoftKeys","","");
var lstn:Object=new Object();
lstn.onKeyDown=function(){
switch(Key.getCode()){
case ExtendedKey.SOFT1:
Key.removeListener(lstn);
_root.gotoAndStop(3);
break;
case ExtendedKey.SOFT2:
case Key.UP:
Key.removeListener(lstn);
_root.typedpw = _root.pwinp;
_root._so.data.lastPW == _root.pw;
_root._so.flush();
usePW=true;
_root.gotoAndStop(3);
break;
}
}
Key.addListener(lstn);



