var nativeProcessStartupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();
var file:File = File.desktopDirectory.resolvePath("android.exe");
nativeProcessStartupInfo.executable = file;
var myAppProcess = new NativeProcess();
myAppProcess.start(file);
它不起作用。
请帮帮我 感谢。
答案 0 :(得分:1)
您是否检查过NativeProcess是否受支持?
if(NativeProcess.isSupported)
setupAndLaunch();
else
trace("NativeProcess not supported.");
NativeProcess类及其功能仅适用于使用本机安装程序(扩展桌面配置文件应用程序)安装的AIR应用程序。调试时,可以将-profile extendedDesktop参数传递给ADL以启用NativeProcess功能。在运行时,您可以检查NativeProcess.isSupported属性以确定是否支持本机进程通信。