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

Running FrameScript command with ExtendScript

Community Beginner ,
Dec 01, 2018 Dec 01, 2018

Copy link to clipboard

Copied

Hi,

Have you ever tried to run FrameScript command inside ExtendScript code ?

is that possible ?

TOPICS
Scripting

Views

454

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

Community Expert , Dec 01, 2018 Dec 01, 2018

The best way to do this is to first get your FrameScript code running from a command line. Check the documentation for RunEslBatch and you will see how to do it.

Once this is working, then go to your ExtendScript script and use the File object and methods to create a .bat file that commands the appropriate command line call that you determined for calling your FrameScript code. Use the execute () method on the File object of the .bat file that you created and it should do the job.

You can also use

...

Votes

Translate

Translate
Community Expert ,
Dec 01, 2018 Dec 01, 2018

Copy link to clipboard

Copied

The best way to do this is to first get your FrameScript code running from a command line. Check the documentation for RunEslBatch and you will see how to do it.

Once this is working, then go to your ExtendScript script and use the File object and methods to create a .bat file that commands the appropriate command line call that you determined for calling your FrameScript code. Use the execute () method on the File object of the .bat file that you created and it should do the job.

You can also use ExtendScript's CallClient method, but I am not exactly sure what you would need as parameters. I can look into this more if you don't want to use the other approach.

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
Community Beginner ,
Dec 03, 2018 Dec 03, 2018

Copy link to clipboard

Copied

Thanks, I tried first option.

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
Community Expert ,
Dec 03, 2018 Dec 03, 2018

Copy link to clipboard

Copied

Did it solve the problem for you? If so, please mark my answer as correct. Thank you very much.

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
Community Beginner ,
Dec 03, 2018 Dec 03, 2018

Copy link to clipboard

Copied

LATEST

Yes, The first option helped me.

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