gpt4 book ai didi

actionscript-3 - 如何在 Flash 应用程序中创建退出按钮

转载 作者:行者123 更新时间:2023-12-04 16:27:53 34 4
gpt4 key购买 nike

我正在创建一个将在 exe 中导出的 Flash 应用程序格式,它不会在浏览器中运行。我想在舞台内添加一个退出按钮,但我不知道如何使用 ActionScript 3 来做到这一点。

我记得用 fscommand 是可能的在 ActionScript 2 中,但它在 AS3 中不起作用。

我到处搜索,但每个人都试图关闭浏览器环境中的弹出窗口或选项卡或窗口,而不是 Flash 应用程序。

最佳答案

当您现在可以将 as3 应用程序导出为 AIR 时,为什么要使用 .exe 格式?

如果你仍然想要这个 exe,我认为这会奏效

 import flash.system.fscommand;

//Then you can use the following function for the button click handler:

private function clickHandler(event:MouseEvent):void {
fscommand("quit");
}

如果您决定尝试 AIR 解决方案,这是命令
 import flash.desktop.NativeApplication;
nativeApp.nativeApplication.exit();

关于actionscript-3 - 如何在 Flash 应用程序中创建退出按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9021863/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com