gpt4 book ai didi

apache-flex - 为什么不支持 AIR NativeProcess?

转载 作者:行者123 更新时间:2023-12-04 22:15:34 24 4
gpt4 key购买 nike

我正在使用 Flash Builder 构建一个桌面应用程序,我需要它来运行一个 .exe 程序。我下载并安装了最新的 AIR SDK,将它放在我的 Flash Builder sdks 文件夹中,并让我的项目使用它。现在我没有任何编译器错误,但是:

     if(NativeProcess.isSupported)
{
var file:File = new File("C:\Torres.exe");
var nativeProcessStartupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();
nativeProcessStartupInfo.executable = file;
var process:NativeProcess = new NativeProcess();
process.start(nativeProcessStartupInfo);
}

我检查了一下,它永远不会进入 if block 。为什么不支持 nativeprocess?有任何想法吗?

最佳答案

添加这个

<supportedProfiles>extendedDesktop</supportedProfiles>

到您应用的 list 文件。使用 NativeProcess 需要扩展权限。

这篇文章可能会有所帮助: http://www.adobe.com/devnet/air/flex/articles/air_screenrecording.html

关于apache-flex - 为什么不支持 AIR NativeProcess?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7478322/

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