使用Flex AIR2.6开发桌面程序,添加程序自己重启或启动其他exe程序, 发现NativeProcess.isSupported一直为false。除了配置文件中<supportedProfiles>extendedDesktop</supportedProfiles>,还需要在发布的时候勾选Export as:
Signed native installer, 而不是Signed AIR package.
源代码:
NativeApplication.nativeApplication.autoExit=true;
var appFile:File = File.applicationDirectory.resolvePath("AIRSelfReStart.exe");
var str:String = appFile.nativePath;
file = file.resolvePath(str);
var np:NativeProcessStartupInfo = new NativeProcessStartupInfo();
np.executable = file;
var process:NativeProcess = new NativeProcess();
process.start(np);
this.close();
开发环境 Flash Builder, SDK4.5
以下是AS3 API中对NativeProcess.isSupported的说明:
表示在当前的配置文件中是否支持运行本机进程。仅当在 extendedDesktop 配置文件中运行时,此属性才返回 true。此外,对于作为 AIR 文件安装的应用程序,NativeProcess.isSupported 始终为 false。您必须使用 ADT -target native 标志将 AIR 应用程序打包,才能使用 NativeProcess 类。
仅记录学习之用
分享到:
相关推荐
解决SVN上传提示Empty directoriesis not supported 解决SVN上传提示Empty directoriesis not supported
当您遇到"405 - HTTP method GET is not supported by this URL"这样的问题时,通常意味着您的服务器端代码没有正确处理GET请求,或者请求被误定向到了一个不期望GET方法的Servlet。 首先,我们需要理解HTTP协议中...
网上各种教程无法解决这个工具提示 not supported not listening问题,这个安装包给出了所有需要的文件,并给出了详细的指引。 绝大多数情况你会安装成功。如果你成功了,或者失败了,请给我评论。大家看评论区。
plex media server 1.25.4.5487 x86_64_DSM7 群晖7版本 解决部分视频不能播放并提示,File is unplayable. Color space is not supported.文件无法播放。不支持颜色空间。
解决部分视频不能播放并提示,File is unplayable. Color space is not supported.文件无法播放。不支持颜色空间。
ThinkPHP6.1 Filesystem Driver aliyun not supported
网上各种教程无法解决这个工具提示 not supported not listening问题,这个安装包给出了所有需要的文件,并给出了详细的指引。 绝大多数情况你会安装成功。如果你成功了,或者失败了,请给我评论。大家看评论区。 ...
在本文中,我们将深入探讨如何在Laravel框架中使用Qiniu云存储服务,并通过`qiniu-laravel-storage`这个扩展包实现高效且便捷的文件上传与管理。`qiniu-laravel-storage`是专门为Laravel 5设计的一个集成Qiniu SDK的...
Keil MDK+Jlink调试ARM7设置指南,一步一步的教您安装。
django 设置settings.py,本文以mysql 为例,说明怎样配置mysql d的连接
Exporting the operator repeat_interleave to ONNX opset version 11 is not supported TypeError: 'torch._C.Value' object is not iterable (Occurred when translating repeat_interleave). 问题解决: 1....
Error:Operation category READ is not supported in state standby 待机状态下不支持操作类别读取 错误原因:显示我的master处于standby状态 解决办法:1、检查namenode的状态,如果都处在standby状态,那就是自动...
Jun 08 00:02:46 localhost.localdomain firewalld[854]: WARNING: ICMP type 'beyond-scope' is not supported by the kernel for ipv6. Jun 08 00:02:46 localhost.localdomain firewalld[854]: WARNING: beyond-...
NULL 博文链接:https://lectery.iteye.com/blog/485357
Oracle数据库在运行过程中,经常会遇到各种错误代码,错误代码ORA-00845是其中的一个,它是指“MEMORY_TARGET not supported on this system”。这个错误一般发生在尝试在不支持MEMORY_TARGET参数的系统上设置该参数...
项目中碰到的问题
本文讲述了Python使用pip安装报错:is not a supported wheel on this platform的解决方法。分享给大家供大家参考,具体如下: 可能的原因1:安装的不是对应python版本的库,下载的库名中cp27代表python2.7,其它同理...