Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
javascript
javascript

var command = "%PROGRAMFILES%\\Vendor XYX\\XYZImagingProgram.exe";
Atrium.runPCCommand(command);  // this will run XYZImagingProgram.exe

...

Code Block
javascript
javascript

Atrium.runPCCommand("notepad.exe");  // this will open up an empty notepad document

...

Code Block
javascript
javascript

Atrium.runPCCommand("calc.exe");  // this will run the system's calculator

...