Executes the command from operating system command level (like from terminal). To run commands like from 'Run as' prompt on windows, you can type (on example of calculator) ["cmd.exe", "/C", "start", "calc"]
Parameters:- Command to execute - Array expression - The array of command components. The first one should be command name. Next come the arguments. Ie. to run ''Java -version'' the array should evaluate to: [''java'', ''-version''],
- Run in background - Checkbox - If the player should wait until command termination.
krzys2014-11-23