• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

NativeProcess is not available on debug

New Here ,
Apr 29, 2012 Apr 29, 2012

Copy link to clipboard

Copied

Hi guys ,

I am developing an AIR app using Flash CS5 and i cannot get the NativeProcess to work when debugging my application.  i desperately wants to have that because of some important functionality.

Please guide me to the correct route to get it to work.

cheers

SJ

TOPICS
Performance issues

Views

807

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Apr 30, 2012 Apr 30, 2012

Copy link to clipboard

Copied

http://www.haxer.be/screenshots/air-nativeproces-settings.jpg

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
Apr 30, 2012 Apr 30, 2012

Copy link to clipboard

Copied

Can you try also checking "Desktop" (in addition to "Extended Desktop")?  What type of error are you getting?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 02, 2012 May 02, 2012

Copy link to clipboard

Copied

When i add "Desktop" , NativeProcess.isSupported becomes false   its not an error i got ,  i kept receiving NativeProcess.isSupported false , and i was looking for a way to make it "true".

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Adobe Employee ,
May 02, 2012 May 02, 2012

Copy link to clipboard

Copied

Hi Supun,

Can I gather from your other error that you were able to solve this issue?

Chris

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Aug 23, 2012 Aug 23, 2012

Copy link to clipboard

Copied

LATEST
why NativeProcess.isSupported always return false?..

here's the code:
//---
import flash.filesystem.*;

import flash.desktop.NativeProcessStartupInfo;
import flash.desktop.NativeProcess;

var myApp:File = File.applicationDirectory.resolvePath("test.exe");
var myAppProcessStartupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();
var myAppProcess = new NativeProcess();

myAppProcessStartupInfo.executable = myApp;
myAppProcess.start(myAppProcessStartupInfo);
//---

i alread check the extended Desktop and Desktop in air settings..

but still NativeProcess return false..

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines