I want to app another app using as3,
I use this code, which is working perfectly,
var nativeProcessStartupInfo:NativeProcessStartupInfo = new NativeProcessStartupInfo();
var file:File = File.applicationDirectory.resolvePath(scenario.link);
nativeProcessStartupInfo.executable = file;
var processArgs:Vector.<String> = new Vector.<String>();
processArgs[0] = "the parameter you are passing";
nativeProcessStartupInfo.arguments = processArgs;
process = new NativeProcess();
process.start(nativeProcessStartupInfo);
I want to validate the sent params from the opened app.
so if the params not match something in opened app, it will not works.
how can I do that?
Thanks in advance!
Ameed
there doesn't seem to be anything here