• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Is it possible call an *.exe window's program from a script

Explorer ,
Aug 14, 2016 Aug 14, 2016

Copy link to clipboard

Copied

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.

Views

168

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Mentor , Aug 15, 2016 Aug 15, 2016

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

Votes

Translate

Translate
Mentor ,
Aug 15, 2016 Aug 15, 2016

Copy link to clipboard

Copied

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

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Aug 15, 2016 Aug 15, 2016

Copy link to clipboard

Copied

LATEST

Russ

Many thanks for prompt reply.

Bob

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines