Question
Creating INDD file from INX and visa versa
Hi
My task is to create a inx file from indd file and that was easy. I just use
var myDocument = app.open(File(sourceFileName));
//save INX
myDocument.exportFile(ExportFormat.INDESIGN_INTERCHANGE, File(destinationFilePath+".inx"));
but my problem is that I now have a more that one INDD file and one INDB file and client ask me to make INX file from it.
(I;m just a developer and I never use InDesigner application at all so is it possible? and how?
and than I have to form INX file create INDD file , text file and all Linking files in Links folder.
I found a
var myDocument = app.open(File(sourceFileName));
myDocument.packageForPrint(myLinkFolder, false, true, false, true, true, true, "", false);
but problem is that I got only INDD file and for some reason the newly create INND file has a name undifined_1.indd (I found that this is a file name that script foud from INX file ?!?) LInks file is empty.
Is it possible that he create package and put all eps file there !?!
My task is to create a inx file from indd file and that was easy. I just use
var myDocument = app.open(File(sourceFileName));
//save INX
myDocument.exportFile(ExportFormat.INDESIGN_INTERCHANGE, File(destinationFilePath+".inx"));
but my problem is that I now have a more that one INDD file and one INDB file and client ask me to make INX file from it.
(I;m just a developer and I never use InDesigner application at all so is it possible? and how?
and than I have to form INX file create INDD file , text file and all Linking files in Links folder.
I found a
var myDocument = app.open(File(sourceFileName));
myDocument.packageForPrint(myLinkFolder, false, true, false, true, true, true, "", false);
but problem is that I got only INDD file and for some reason the newly create INND file has a name undifined_1.indd (I found that this is a file name that script foud from INX file ?!?) LInks file is empty.
Is it possible that he create package and put all eps file there !?!
