Copy link to clipboard
Copied
I have a bunch of already created InDesign files and need to change the preferences on all of them to "guides in back." Does anyone know of a script to do this?
Here is code for you
//Send document guides to back
//created by Baljeet Singh
if (app.documents.length > 0)
{
alert ("Please close all document and try again");
exit();
}
var dirr = Folder.selectDialog( 'Select Indesign folder');
app.scriptPreferences.userInteractionLevel = UserInteractionLevels.neverInteract;
alldocs = getAllfiles( dirr, [], ".indd" );
var alldocslen = alldocs.length;
for (l=0; l<alldocslen; l++)
{
var doc = app.open( alldocs
Copy link to clipboard
Copied
Here is code for you
//Send document guides to back
//created by Baljeet Singh
if (app.documents.length > 0)
{
alert ("Please close all document and try again");
exit();
}
var dirr = Folder.selectDialog( 'Select Indesign folder');
app.scriptPreferences.userInteractionLevel = UserInteractionLevels.neverInteract;
alldocs = getAllfiles( dirr, [], ".indd" );
var alldocslen = alldocs.length;
for (l=0; l<alldocslen; l++)
{
var doc = app.open( alldocs
Shonky
Copy link to clipboard
Copied
Shonky,
Thank you so much! You are so fast, and the script works great!
Find more inspiration, events, and resources on the new Adobe Community
Explore Now