GameInput buttonA exits game on OUYA
Hi!
On the OUYA, the "A" button is also the "Android back button". When I press that button, it exists the Adobe Air app.
I listen to the onChange event for the GameInputController for the a-button and even do this:
protected function onChange(event:Event):void
{
event.preventDefault();
event.stopImmediatePropagation();
}
to try to "preventDefault()" and prevent the back button from going back.
No luck however.
