Hola a todos,
He buscando información sobre como detectar el boton de ESCAPE en estado de pantalla completa pero no lo he logrado, tengo el siguiente código:
import flash.ui.Keyboard;
stage.addEventListener(KeyboardEvent.KEY_DOWN, EscKeyFunction);
function EscKeyFunction(e:KeyboardEvent):void{
if((e.keyCode == 27) && (stage.displayState == StageDisplayState.FULL_SCREEN)){
// hacer algo
}
}
pero no me esta funcionando, estoy haciendo algo mal?
Saludos a todos