Quality checking and editing using adobe acrobat 7...need advice/help.
I work at a tax company and my job has a lot of responsibilities and one of my main responsibilities is to quality check and revise tax forms sent to us by our clients. Sometimes these clients send us forms that have an incomplete zip code, address, incomplete FEIN, no electronic signature, incomplete ssn, and the list goes on and on.
Anyway I have a coworker who is able to revise and quality check 200+ tax forms usually within a work day. I can maybe do this if I skip my one hour lunch and take a bunch of caffeine pills. Guys I'm killing myself trying to keep up with this guy and yes Its important that I do or I might get the axe from our head of department.
Tonight I spent a bunch of time figuring out how to place a text box on the top of each page for an entire pdf document (the amount of pages does not matter, every page gets stamped with my textbox). I figured out how to do this using java script within adobe acrobat 7.
My question to you guys is....do you know of any other java script shortcuts that might help me with my job? I would super duper appreciate any response....my job depends on it.
For reference, this is what I've learned tonight:
// Assume that the text box is the only
// annot on the page
this.syncAnnotScan();
var annt = this.getAnnots(this.pageNum)[0];
var props = annt.getProps();
for(var i=0;i < this.numPages;i++){
props.page = i;
if(i != this.pageNum)
this.addAnnot(props);
}
