|
|||
|
Hi!
I am trying to launch external application, using Code:
function runApp(args)
{
ExternalInterface.call("exec", args);
}
Is there any fix of this problem? |
|
|||
|
When the file to be executed by the "exec" command contains spaces, it should be in quotes. For example:
Code:
ExternalInterface.call("exec", "\"c:\\program files\\pic.jpg\"");
Code:
ExternalInterface.call("exec", "\"c:\\program files\\some.exe\" -t -s");
|
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|