将带有 Air 运行时的 Air 应用程序打包在一个安装程序中 - windows .exe
我已获准分发 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这很简单,但您需要 Adobe 的许可证才能通过您的应用程序分发 Air< /a>.就我个人而言,我不喜欢在安装程序中分发 Air,因为它会增加额外的文件大小。
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.
以下是创建本机
.exe
安装程序的方法:安装 SDK:
如果您尚未这样做,请下载 AIR SDK 并将其解压到
C:\AIR
(
点击 Win+R,然后输入
control.exe sysdm.cpl,System,3
- 按确定单击环境变量...
在下部窗格(系统变量)中,找到路径并单击编辑...
在最后添加
;C:\AIR< /code> 并一直点击 OK out
编译:
打开命令提示符窗口,然后
cd
到.air
文件的位置运行此命令:
注意:
就像您的
.air
文件可以被签名一样,您的.exe
文件也可以被签名有关详细信息,请参阅Adobe 网站上的打包桌面本机安装程序文章
Here's how you can create a native
.exe
installer:Install the SDK:
If you haven't already done so, download the AIR SDK and extract it to
C:\AIR
Hit Win+R, and type
control.exe sysdm.cpl,System,3
- press OKClick Environment Variables...
In the lower pane (System variables), find Path and click Edit...
On the end, add
;C:\AIR
and hit OK all the way outCompile:
Open a Command Prompt window, and
cd
to the location of your.air
fileRun this command:
N.B.:
Just as your
.air
file can be signed, your.exe
file can be signed tooFor more information, see the Packaging a desktop native installer article on Adobe's website