esc 退出程序

air

import flash.desktop.NativeApplication;
stage.addEventListener(FullScreenEvent.FULL_SCREEN,screenHandle); function screenHandle(e:FullScreenEvent):void { if(!e.fullScreen) { NativeApplication.nativeApplication.exit(); } }

  as3

stage.addEventListener(FullScreenEvent.FULL_SCREEN,screenHandle);
function screenHandle(e:FullScreenEvent):void
{
     if(!e.fullScreen)
    {
       fscommand("quit");
    }
}stage.displayState = StageDisplayState.FULL_SCREEN;//全屏显示

  

原文地址:https://www.cnblogs.com/dt1991/p/14589140.html