Anyone know how in Flash Lite 4 to react to people pushing the hardware button?
I have a game that has background music which keeps playing (and the game keeps running) when users try to suspend the application (Am I correct that in FL3 it automatically suspends applications when a user returns to the phone menu, but in FL4 the application keeps playing). I've tried listening for the following events, but none of them fire:
stage.addEventListener(Event.RESIZE, onResize);
stage.addEventListener(Event.ACTIVATE, onActivated);
stage.addEventListener(Event.DEACTIVATE, onDeactivated);
stage.addEventListener(FullScreenEvent.FULL_SCREEN, onFullScreen);
stage.addEventListener(FocusEvent.FOCUS_IN, onFocusIn);
stage.addEventListener(FocusEvent.FOCUS_OUT, onFocusOut);
stage.addEventListener(MouseEvent.MOUSE_OUT, onMouseOut);
I even tried continually polling to check if there was a property like stage.visible that might change, but couldn't find anything that's different when the user is not in the application.



