Skip to main content
Mahesh_JW
Inspiring
March 26, 2015
Question

InDesign CS2 file not open in InDesing CS6

  • March 26, 2015
  • 2 replies
  • 373 views

Hi All,

I am having hundreds of CS2 version file. Most of the files are opening in CS6. but some files are not open in CS6 but it is opening in CS2. what is the problem?

Code:

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

    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.neverInteract;

    app.open(File(InputFiles[cnt]));

    app.scriptPreferences.userInteractionLevel = UserInteractionLevels.neverInteract;

.

.

.

.

}

Error:

while i try to open manual then it shows

if i click OK then it is open.

how to do it script? Help me

Thanks in Advance,

Mahesh

This topic has been closed for replies.

2 replies

Stefan Rakete
Inspiring
April 10, 2015

use try - catch error handling and write those files that cannot be opened

into a log file.

Convert them manually later.

Thanks Stefan

Peter Kahrel
Community Expert
Community Expert
March 26, 2015

Probably the only way to do this is by disabling the app.scriptPreferences.userInteractionLevel lines. InDesign then shows any error dialogs, so you may be in for some OK clicking, but I don't see any other way.

Peter