mvsystem
mvsystem

Reputation: 17

How to run file .exe by air?

this is my cod:

  var nativeProcessStartupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();

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

It does not work.

please help me thanks.

Upvotes: 0

Views: 811

Answers (1)

SharpEdge
SharpEdge

Reputation: 1762

Have you checked if NativeProcess is supported?

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

The NativeProcess class and its capabilities are only available to AIR applications installed with a native installer (extended desktop profile applications). When debugging, you can pass the -profile extendedDesktop argument to ADL to enable the NativeProcess functionality. At runtime, you can check the NativeProcess.isSupported property to to determine whether native process communication is supported.

Upvotes: 1

Related Questions