SysLib.startCmd runs a system command asynchronously and does not return a value.
eglx.lang
static function startCmd(commandString string in);
SysLib.callCmd("mySpecialProgram.exe")The program "mySpecialProgram.exe" must be in a directory to which the PATH variable points. You can also specify the complete directory location, as in the following example:
SysLib.callCmd("program files/myWork/mySpecialProgram.exe")
To initiate a system command synchronously, invoke SysLib.callCmd.
Target | Issue |
---|---|
Java | No issues. |
JavaScript | The SysLib.startCmd function is not supported. |