import flash.system.fscommand
import flash.events.MouseEvent
btn.addEventListener(MouseEvent.CLICK, clickHandler)
function clickHandler(evt:MouseEvent)
{
fscommand("quit")
}
调试版本是测不出来的,要用发布版本来测试。
btn_close.addEventListener(MouseEvent.MOUSE_DOWN,CloseEvent)function CloseEvent(e:MouseEvent):void
{
fscommand("quit","true")
}
//关闭按钮加一个实例名:btn_close
然后把上面的代码放到帧上。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)