|
If you're trying to separate the 102 page PDF into 102 individual PDFs try this:
Go to Advanced > Batch Processing
Create a new sequence and select "Execute JavaScript."
Paste the following text into the window?
- - -
/*Extract Pages to Folder*/
// regular expression acquire the base name of file
var re = /.*\/|\.pdf$/ig;
var filename = this.path.replace(re,"");
try
{
for ( var i = 0; i < this.numPages; i++ )
this.extractPages
({
nStart: i,
cPath: filename+"_" + (i +1)+".pdf" // (*)
});
}
catch (e)
{
console.println("Batch Aborted: " + e )
}
- - -
Execute the sequence and you'll get 102 separate files. I found this little trick on another forum. Works wonders.
|