views:

12

answers:

0

So my problem is that When I run this in flash builder It works great. But after I export release build it as a native installer I can get it to run but my button no longer activates my other exe. Any help would be great. Here is a copy of what my mxml looks like

= new Vector.(); processArgs[0] = "hello"; nativeProcessStartupInfo.arguments = processArgs; nativeProcessStartupInfo.workingDirectory = File.documentsDirectory; var process = new NativeProcess(); process.start(nativeProcessStartupInfo);

        }

    ]]>
</fx:Script>
<s:Button x="456" y="340" label="Dave" click="button1_clickHandler(event)" verticalCenter="0" horizontalCenter="0"/>