Skip to main content
Participant
March 1, 2019
Question

Framemaker script

  • March 1, 2019
  • 3 replies
  • 2332 views

Hi, Can anyone get me jsx coding to open bunch of files in Framemaker?

This topic has been closed for replies.

3 replies

Participant
March 4, 2019

Hi, I've used the below code to open the files, but getting an error saying "Internal Error 15024. FrameMaker has detected a serious problem and must quit."

var path = ChooseFile("Browse for file", "", "", Constants.FV_ChooseOpenDir);

var InputFiles = get_File(path,[],['.*'],"FILE");

for(var i=0;i<InputFiles.length;i++){

                  Open(InputFiles,false);

}

4everJang
Legend
March 4, 2019

Hello Raj,

From the source lines you are showing it is obvious to me that you have not read the Scripting Guide, and you have not used the search on this forum to find an answer that has already been given.

The Scripting Guide specifies which parameters the Open( ) method requires, and you are not providing them. Please try to use the Guide before you post your requests for help on this forum. We all have jobs to do and even though we are willing to help newbies, we should not be spending our time repeating what was said before or what is written in the Scripting Guide.

Kind regards and good luck with the learning curve

4everJang

Participant
March 1, 2019

Hi Russ,

I have already checked on this site and am still unable to open all the files.

Looking forward you help here.

Thanks,

Raj

frameexpert
Community Expert
Community Expert
March 1, 2019

Always start with the smallest possible task. Can you open one file? If not, why not? What is going wrong?

www.frameexpert.com
Participant
March 4, 2019

Hi,

     I also getting the same problem.. While opening the file "Serious occurs and it quits the process..

Thanks,

Praveen

Legend
March 1, 2019

Hi, I have a basic sample here on how to open a single file:

FrameMaker ExtendScript Samples - West Street Consulting

Might give you some ideas.

Russ