Is it possible call an *.exe window's program from a script
I need to call a Window's program, compiled in a different language, from A Framemaker2015 script?
I have seen "shell.run("file etc.) listed for other Java's.
I need to call a Window's program, compiled in a different language, from A Framemaker2015 script?
I have seen "shell.run("file etc.) listed for other Java's.
bobsteamer,
The File object has an execute() method that should work for you. For example:
var file = new File("C:\\SomePath\\SomeApp.exe");
file.execute();
Russ
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.