So basically, comments are put into Acrobat by many individuals. What Acrobat holds is draft contract documents for construction (many different plans, specs, etc). I am tasked with reporting on these comments.
I'd like to append the current data (hoping I can get ReviewDate, ReviewerName, pdfPageNo, etc) with things like JobNumber, SpecName, SpecDate, FunctionalArea, Importance, etc. so that I can create reports.
Thanks again!
Here's a link to a previous discussion that includes a script that generates a PDF report using JavaScript: Print comments only
You might not want the same type of output, but the code should give you a good place to start. It demonstrates accessing the comments, sorting, and picking out the specific comment properties that are of interest.
Instead of generating a PDF report like the script does, you could instead write to the JavaScript console and then copy & paste, or write the data to a text file and save it as an attachment that you can then export. It's also possible to control Acrobat through Visual Basic code in Access, which can lead to a more automated workflow if you intend to save the data to a database.