如何通过空运行文件.exe?

时间:2014-08-11 07:44:33

标签: actionscript-3 flash air

这是我的鳕鱼:

  var nativeProcessStartupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();

  var file:File = File.desktopDirectory.resolvePath("android.exe");
  nativeProcessStartupInfo.executable = file;
  var myAppProcess = new NativeProcess();
  myAppProcess.start(file);

它不起作用。

请帮帮我 感谢。

1 个答案:

答案 0 :(得分:1)

您是否检查过NativeProcess是否受支持?

if(NativeProcess.isSupported)
    setupAndLaunch();
else
    trace("NativeProcess not supported.");

NativeProcess类及其功能仅适用于使用本机安装程序(扩展桌面配置文件应用程序)安装的AIR应用程序。调试时,可以将-profile extendedDesktop参数传递给ADL以启用NativeProcess功能。在运行时,您可以检查NativeProcess.isSupported属性以确定是否支持本机进程通信。