Answered
We were recently upgraded to Acrobat X because we asked for the ability to detect and delete blank pages from MFP scanned documents. These documents are mostly duplex, but have many blank reverse pages. In Acrobat 9 we had to manually find and delete the blank page, but was promised the ability to do it with X (eliminating the need to buy a PDF cleaner app). We have nto been able to figure it out. Have we been had?
However, you have always had a way (although not a good one) to detect blank pages on a scan. The question you have to ask is, "what's a blank page?" In the PDF format, every scanned page is a single raster image. To know anything about that page it has to be OCR'd. If the OCR does not find any text you could say that the page is blank. It would be simple enough to write a script to delete any page that does not contain any text. You could even restrict the check to a certain area of the page to exclude headers and footers.
This method is flawed because OCR will occasionally convert garbage into text, i.e., "is it a spec, or a period?" Also, it does not detect images. But it's better than nothing. The script could be written to present the user with each page it thinks is blank and ask if it should be deleted.
The whole thing could be written as an Action. See the seminar on Jan 19th.
Thom Parker
The source for PDF Scripting Info
www.pdfscripting.com
Very Important - How to Debug Your Script