Copy link to clipboard
Copied
Hola a todos, derrepente alguien sabe como eliminar masivamente en archivos grandes paginas vacias en el adobe acrobat.
Sucede que estoy trabajando archivos muy pesados y encima que se cuelga a cada rato tengo que eliminar como 10 mil paginas vacías por archivo por cada archivo.
Copy link to clipboard
Copied
Hello @jenner_0217
I hope you are doing well, and thank you for reaching out.
Could you please share more details? Do you want to delete blank pages from PDF files? If yes, you can remove blank pages in bulk using Acrobat, but there’s no single-click “delete all empty pages” button.
Option 1: Use the Organize Pages tool
Open the PDF in Adobe Acrobat Pro.
Go to All Tools > Organize Pages.
Scroll through and select blank pages (hold Ctrl or Shift for multiple selections).
Click Delete.
Option 2: Automate with Action Wizard
Go to All Tools > Action Wizard.
Create a new action:
Add Execute JavaScript.
Use a script that checks each page for content and deletes it if it is empty. Run the action on your large files.
Sample Script: Please note you might have to change the script, as this is a sample example of a
for (var i = this.numPages - 1; i >= 0; i--) {
var b = this.getPageBox("Crop", i);
var txt = this.getPageNthWord(i, 0, true);
if (!txt) this.deletePages(i);
}
Suggestions:
I hope this helps.
Thanks,
Anand Sri.
Get ready! An upgraded Adobe Community experience is coming in January.
Learn more