将带有 Air 运行时的 Air 应用程序打包在一个安装程序中 - windows .exe

发布于 2024-11-28 08:12:48 字数 393 浏览 1 评论 0原文

我已获准分发 adobe air run time。我已经能够毫无问题地打包 .dmg 文件,现在我正在尝试使用 Windows 运行时创建应用程序包。

我遵循了相同的说明和Windows安装程序当我从我的安装程序目录中双击(MyApp 2.0 Installer.exe)时,它可以正常工作创建的。

现在我正在尝试将该目录中的所有内容打包到一个 .exe 文件中。我尝试过使用标准 Windows Iexpress,但它似乎无法正常工作。

我只是想知道应该如何创建最终的 .exe 文件。

I've been approved to distribute the adobe air run time. I've been able to a packaged .dmg file without any problems, now I'm trying to create a package of my application with the runtime for windows.

I've followed the same instructions and the windows installer (MyApp 2.0 Installer.exe) is working properly when I double click it form the installer directory that I created.

Now I'm trying to package everything from that directory into one .exe file. I've tried using the standard windows Iexpress, but it doesn't seem to work properly.

I'm just wondering how I should go about creating the final .exe file.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深陷 2024-12-05 08:12:48

It's easy enough, but you need a license from Adobe to be able to distribute Air with your application. Personally, I'm not a fan of distributing Air in the installer because of the extra filesize it adds.

久随 2024-12-05 08:12:48

以下是创建本机 .exe 安装程序的方法:

安装 SDK:

  1. 如果您尚未这样做,请下载 AIR SDK 并将其解压到 C:\AIR

  2. 点击 Win+R,然后输入 control.exe sysdm.cpl,System,3 - 按确定

  3. 单击环境变量...

  4. 在下部窗格(系统变量)中,找到路径并单击编辑...

  5. 在最后添加;C:\AIR< /code> 并一直点击 OK out

编译:

  1. 打开命令提示符窗口,然后 cd.air 文件的位置

  2. 运行此命令:

adt -package -target native "Output file.exe" "Input file.air"

注意:

  • 您必须在与要生成的本机安装程序文件相同的操作系统上使用 ADT。因此,要为 Windows 创建 EXE 文件,请在 Windows 上运行 ADT。要为 Mac OS 创建 DMG 文件,请在 Mac OS 上运行 ADT。要为 Linux 创建 DEB 或 RPG 文件,请从 Linux 上的 AIR 2.6 SDK 运行 ADT。

Here's how you can create a native .exe installer:

Install the SDK:

  1. If you haven't already done so, download the AIR SDK and extract it to C:\AIR

  2. Hit Win+R, and type control.exe sysdm.cpl,System,3 - press OK

  3. Click Environment Variables...

  4. In the lower pane (System variables), find Path and click Edit...

  5. On the end, add ;C:\AIR and hit OK all the way out

Compile:

  1. Open a Command Prompt window, and cd to the location of your .air file

  2. Run this command:

adt -package -target native "Output file.exe" "Input file.air"

N.B.:

  • You must use ADT on the same operating system as that of the native installer file you want to generate. So, to create an EXE file for Windows, run ADT on Windows. To create a DMG file for Mac OS, run ADT on Mac OS. To create a DEB or RPG file for Linux, run ADT from the AIR 2.6 SDK on Linux.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文