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.
Hi @defaultvc0w8hgma422 @markdamia @Dannyweston,
Sorry for the troubled experience. And thank you for reporting this issue.
I'm following up to check if this issue is resolved for you now. An update for the app was released last week; please try updating it and let us know how it works.
To update Acrobat: Launch Acrobat > Help Menu > Check for updates. https://helpx.adobe.com/acrobat/release-note/release-notes-acrobat-reader.html
If the issue is still reproducible even after updating the a
Yes. the update corrected the problem. Thank you.
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.
Copy link to clipboard
Copied
Hi @defaultvc0w8hgma422 @markdamia @Dannyweston,
Sorry for the troubled experience. And thank you for reporting this issue.
I'm following up to check if this issue is resolved for you now. An update for the app was released last week; please try updating it and let us know how it works.
To update Acrobat: Launch Acrobat > Help Menu > Check for updates. https://helpx.adobe.com/acrobat/release-note/release-notes-acrobat-reader.html
If the issue is still reproducible even after updating the app, please share the following details:
Thank you for your patience and support.
Copy link to clipboard
Copied
Yes. the update corrected the problem. Thank you.
Copy link to clipboard
Copied