Copy link to clipboard
Copied
When trying to split pdf documentsthrought the Organize Pages > Split funcitionality I get a blank screen with no options to tell it where to split the document. I've testes this with multiple pdf documents that have several different pagecounts.
Running Acrobat Pro 2024.002.20964 with the most recent version of PitStop Pro Plug-In.
Copy link to clipboard
Copied
Same problem here. running the same version. No plug-ins.
If you still need to split files until Adobe gets its act together, here is a javascript code that worked for me.
for (var i = 0; i < this.numPages; i++) {
// Generate a file name with page number appended
var newFileName = this.path.replace(/\.pdf$/i, '') + '.pg' + (i + 1) + '.pdf';
// Extract the current page and save it as a new file
this.extractPages({
nStart: i,
nEnd: i,
cPath: newFileName
});
}
Copy link to clipboard
Copied
Thank you. I ended up installing the previous version, I did get confirmation for a support tech that they are aware of the issue and working on this.
Copy link to clipboard
Copied
Having the same problem.