Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
function ExpandIDML(fromIDMLFile){//Expands an IDML file into folder format
if(! fromIDMLFile){return null}
var fullName = fromIDMLFile.fullName;
fullName = fullName.replace(/\.idml/,"");
var toFolder = new Folder( fullName );
app.unpackageUCF( fromIDMLFile, toFolder );
return toFolder;
}
function CreateIDML(fromFolder){//Produces an IDML package from the contents of a directory:
if(!fromFolder){return null}
var fullName = fromFolder.fullName;
var toIDMLFile = new File( fullName+".idml" );
app.packageUCF( fromFolder, toIDMLFile );
return toIDMLFile;
}
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Copy link to clipboard
Copied
Actually IDML is quite useful - especially if you want to do quality checks
or modify content outside of Indesign ... maybe over a basic web interface
for translations ...
We do have quite a lot of ideas and got a lot of requests concerning our
Java Library for IDML called IDMLlib.
Cheers,
Oliver
ohaeuser@fhcon.de
http://idmllib.com
Copy link to clipboard
Copied
I'm making some tests with IDML but I have a doubt about it. Ok, I can export the IDML from my INDD and make some changes that I think intersting, but how can I import these changes made in IDML to the original INDD?
Thanks.
Copy link to clipboard
Copied
Just open the IDML from InDesign, and you can see the modifications directly in the InDesign file.
Thanks,
ArcRaj
Copy link to clipboard
Copied
Find more inspiration, events, and resources on the new Adobe Community
Explore Now