I have (2) 250 page pdf files that I want to overlay one on top of the other. Is there a way to do this in Acrobat 9 Professional?
Sorry but that doesn't work in the way RockChalk22 wants - the OCG and background/watermark tools will only import a single page and replicate it across the pages of the active document, irrespective of how many pages are in the source file.
You can do it with a console script, provided you know the two documents have the same page counts and the source file is in a known location:
Paste this into the JS console (CMD-J or Ctrl-J), edit the filename, select it all and press ENTER:
for (n=0;n<this.numPages;n++) {
this.addWatermarkFromFile({
cDIPath: "/C/myfolder/sourcefile.pdf",
nSourcePage: n, nStart: n});
}
For more options such as scaling and opacity, see the Acrobat JavaScript API documentation.
North America
Europe, Middle East and Africa
Asia Pacific