Problem printing comments summary in continuous list

I have made a bunch of underline comments through a large pdf in the hopes of printing just the comments and having essentially a shorter, more succinct version of the large file. When I go to print the comment summary (comments only) I end up with the comments from each page still printed on separate pages, which defeats the purpose of me trying to get a shorter document. I'd like just one, continous list of all the comments on as few pages as possible. I found some other forums (which are read-only now) that suggested using the following JavaScript to get a continuous comments summary:
// Get the comments in this document, and sort by author
this.syncAnnotScan();
annots = this.getAnnots({nSortBy: ANSB_Author});
// Open a new report
var rep = new Report();
rep.size = 1.2;
rep.color = color.blue;
if (annots) {
rep.writeText("Summary of Comments: By Author");
rep.color = color.black;
rep.writeText(" ");
rep.writeText("Number of Comments: " + annots.length);
rep.writeText(" ");
var msg = "\200 page %s: \"%s\"";
var theAuthor = annots[0].author;
rep.writeText(theAuthor);
rep.indent(20);
for (var i=0; i < annots.length; i++) {
if (theAuthor != annots[i].author) {
theAuthor = annots[i].author;
rep.writeText(" ");
rep.outdent(20);
rep.writeText(theAuthor);
rep.indent(20);
rep.writeText(
util.printf(msg, 1 + annots[i].page, annots[i].contents));
} else {
var msg = "No annotations found in this document, %s.";
rep.writeText(util.printf(msg, this.documentFileName));
// Now open the report
var docRep = rep.open("myreport.pdf");
docRep.info.Title = "End of the month report: August 2006";
docRep.info.Subject = "Summary of comments at the August meeting";
I think this could be a great solution, but I'm having a problem with it: it's only printing the comments for the first half of my document. At the very end of the last page it prints, some of the comments overlap, some are skipped altogether, and then it stops going any further through the comments. I tried reading through the code to see if there was some sort of max number of comments defined or anything like that, but wasn't able to debug it. Does anyone know why the code isn't printing all the comments? I'm using Acrobat 9.5.0 Pro on Windows.
Thank you in advance for your help!

Hi,
After you have run the code can you look at the Console to see if there is any error there?
You may have to enable settings to have the console so on exceptions - "Edit->Preferences->JavaScript" (Acrobat->Preferences->JavaScript on MAC) under the JavaScript Debugger heading.
Check the following
"Enable JavaScript debugger after Acrobat is restarted"
"Show console on errors and messages"
Then if you rerun the code if there is an error in the script the console should show and tell you what the error was.
Regards
Malcolm

Similar Messages

  • How can I show only text edits and not text formatting when using print comments summary?

    Acrobat 9.3.0 for Mac.
    Here is the scenario: I used the Compare command to see the changes between 2 PDFs. The resulting file some edits are inserts and some are deletions. I want to print a comments summary only showing the text edits. In the Compare Option pane, I select Text and deselect Images, Annotations, Formatting, Headers/Footers, and Backgrounds. Now on the screen I see inserts are highlighted in blue and deletions are marked with sort of a caret and vertical bar symbol. So all looks good at this point. However, when I show the Comments List, I see addtional comments that indicate "Replace - The following text attributes were changed: fill color." Those comments do not appear in the page view unless I check the Formatting check box to show them. With Formatting unchecked, I print a comments summary and all of the "Replace - Fill Color" comments" appear on the resulting comments summary.
    I only want to show text edits, not text formatting changes. So questions are:
    1. Why, when the Formatting checkbox is unchecked, do the text formatting comments still appear in the comments list when they do not appear on the page display.
    2. How can I print only the text content edits and not show the text formatting changes when using Print Comments Summary.

    Hi,
    You can set ExecuteWithParams as default activity in the task flow then method activity to return total no of rows passing to Router activity if your method has value 0 then call Create insert operation else do directly to page.
    Following idea could be your task flow
    Execute With param (default) > SetCurrentRowWithKey > GetTotalNoOfRows (VOImpl Method)
    |
    v
    Router
    1. If pageFlowScope outcome is 0 then call CreateInsert > MyPage
    2. if pageFlowScope outcome > 0 then MyPage
    hope it helps,
    Zeeshan

  • Acrobat Pro 9 Print Comment Summary Issues

    I have acrobat pro 9 and am not able to print a comments summary.  When I click "Print Comment Summary" I am not redirected to the "Print" window as tutorials explain should happen.  The "Summarize Options" window just closes and nothing else happens.  Is there something I can change to make this work.  Thanks for your help!

    Sorry about that the subversion is 9.4.0 and I am running xp.  It is adobe acrobat pro, should I move this question to a different forum?

  • Problem printing comments in word 2010

    Print Preview shows mark up and comments. The mark up is printed but not the comment itself. It actually gives the reference number for each comment and prints the added area on the right in which the comments should appear. However, the comments don't print.
    Driving me mad!
    Help would be much appreciated
    Thanks

    No problem printing them here, but check the formatting of the font in the Comment Text style and make sure that it is set to Automatic.  Under some circumstances, some printers use the color inks to create black for a font that is formatted with the
    color black.
    If that doesn't apply, what happens if you use Save & Send and create a pdf from the document?  Once again, here, the pdf includes the comments whether the pdf is created that way or by using the free PrimoPDF converter. Assuming the pdf includes
    the comments, as a work around, you could print that.
    Hope this helps.
    Doug Robbins - Word MVP,
    dkr[atsymbol]mvps[dot]org
    Posted via the Community Bridge
    "russellweb" wrote in message news:[email protected]...
    Print Preview shows mark up and comments. The mark up is printed but not the comment itself. It actually gives the reference number for each comment and prints the added area on the right in which the comments should appear. However, the comments don't print.
    Driving me mad!
    Help would be much appreciated
    Thanks
    Doug Robbins - Word MVP dkr[atsymbol]mvps[dot]org

  • Printing comments summary on a single page

    Is it possible to print comments summaries for a document on a single page rather than on seperate pages?  Even when there is only one comment per page, I cannot find a way to print all the comments on a single page.  Printing "comments only" still puts them on seperate pages.  It does print multiple comments on a page onto one page, but what if I want all the comments for a document onto one page.  All suggestions welcome.

    In the Print dialog, bottom left is a block Summarize Comments as below. Click that and adjust as needed

  • Problem printing daily summary sails report

    Has anyone had problems getting to their summary sales report after downloading the latest Os update?

    Hi,
    After you have run the code can you look at the Console to see if there is any error there?
    You may have to enable settings to have the console so on exceptions - "Edit->Preferences->JavaScript" (Acrobat->Preferences->JavaScript on MAC) under the JavaScript Debugger heading.
    Check the following
    "Enable JavaScript debugger after Acrobat is restarted"
    "Show console on errors and messages"
    Then if you rerun the code if there is an error in the script the console should show and tell you what the error was.
    Regards
    Malcolm

  • Can't print comments Acrobat 9

    Hi all.
    I've just had Acrobat re-installed on my PC, and now I can't print comments.
    I've got a commented PDF. Nornmally I would use ctrl+t to summarise comments, choose my printing preferences, but then when I click on "Print Comments Summary", the summarize pop-up disappears and nothing happens. Usually it would go to the Print menu.
    The same thing happens if I try and do it through the Print menu (Print > Summarize comments).
    I'm running Acrobat 9 on an XP machine.
    I've tried updates and all the options offered here http://helpx.adobe.com/acrobat/kb/printing-problems-acrobat-9-4.html but nothing seems to be helping.
    Thanks if anyone can help.

    I'm having the identical problem and the only way I can get it to work is by not trying to change the title suggested by Acrobat for the PDF.
    If I try printing from Firefox and pasting in a new PDF title, it crashes Firefox.

  • How do you print comments on one page

    I can't figure out how to get comments to print continuosly rather than one comment per page. I have a 30 page PDF with comments on each page. I don't want to print out 30 pages. I just want them to print on x pages as if it were a word doc. Most comments are short. Printing one minor edit per page is driving me nuts.

    Here's a link to a forum discussionthat includes a script: http://acrobatusers.com/content/how-do-i-print-comments-summary-all-one-page-0

  • Issue printing combined document with comment summary.

    I am having an issue generating the correct output for printing a comment summary with connector lines.  I started off with three duplicate documents, all of which had been commented on by different individuals.  The documents and comments were combined and I attempted to print the comment summary with connector lines.  I noticed that at the bottom of the first page, where there should have been a comment, there was only the name of the person who had commented and then the standard line "Comments continued on next page" but the person's comment was not there on page 2.  Its as if only their response is being cut off but you can still see their name, along with the date and time of the comment.
    I sent the issue over to someone I know who has Adobe Acrobat Pro X and they did not have the same issue.  I am not able to upgrade to V.X yet so if there's anyway to correct this or if I am doing something wrong, could someone please respond and let me know?  I combine documents and print with comment summaries on a regular basis.
    Thank you

    Hi Alejandro,
    thanks a lot for your reply, but I am afraid this does not have anything to do with that.
    I have checked the option that you mention and it was checked. Besides, I am using now Web Intelligence Rich Client, so that option should not be a problem.
    I don't really know what it is, it seems to be a bug or maybe the alert are not supposed to be printed.
    I would appreciate any idea that could help.
    Thanks a lot

  • "Create Comment Summary" not showing in Pro 10.1.7?? How can I print document and comments with connector lines on single page?

    Adobe's instructions for Acrobat X Pro say that to print the document with connector lines on the same page, I should go from the menu to "Print With Comments Summary." I'm using version 10.1.7 and that option doesn't show up. My menu bar looks like this:
    and my print dialog box looks like this:
    And if I go to Commenting under Preferences I get this:
    I don't see any of the comment printing options Adobe refers to in their instructions. Am I looking in the wrong place for the option to print comments on the same page as the document? Or is there some reason this is not available?

    Hey Dan,
    With this call:
    DAQmxErrChk ( DAQmxCreateDOChan( taskhandle, "Dev1/PFI0:7","", DAQmx_Val_ChanForAllLines ) );
    You're trying to write to the PFI lines, which are part of port 1. Only the 8 lines on port 0 "Dev1/port0" support clocked/correlated DIO, port 1 only supports static/SW timed DIO (which is what you are using) and counter timer opperations. To do buffered output, check out the Cont Write Dig Port-Ext Clk shipping example at:
    C:\Documents and Settings\All Users\Documents\National Instruments\NI-DAQ\Examples\DAQmx ANSI C\Digital\Generate Values\Cont Write Dig Port-Ext Clk
    when you use this, you'll need to specify an external clock - M-Series DIO does not have its own timing engine so it has to get its clock signal from somewhere else. Most just use an onboard counter to generate a clocking signal, so the Dig-Pulse Train Cont example under counters can be combined with this.
    Most of this is covered in the M-Series user manual, though I realize its not exactly lite reading
    Hope this gets you started,
    Andrew S
    Message Edited by stilly32 on 03-26-2008 05:28 PM
    Getting Started with NI-DAQmx
    Measurement Fundamentals

  • Acrobat 9.3 + Windows 7 - Print Comments List CRASHES App

    When trying to print comments within a PDF (via Comments View), Acrobat will crash. This happens across MULTIPLE machines Win7, WinXP, and Adobe 9.0 and Adobe 9.3. I'm supporting a user who NEEDS this ASAP! Any help would be VERY MUCH appreciated.
    THANKS!
    Here are the error details:
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: Acrobat.exe
    Application Version: 9.3.3.177
    Application Timestamp: 4c1d77c5
    Fault Module Name: Acrobat.dll
    Fault Module Version: 9.3.4.218
    Fault Module Timestamp: 4c65854a
    Exception Code: c00000fd
    Exception Offset: 00125d8c
    OS Version: 6.1.7600.2.0.0.256.4
    Locale ID: 1033
    Additional Information 1: cccf
    Additional Information 2: cccf6fc01b754de22876f6462d94a65a
    Additional Information 3: da6b
    Additional Information 4: da6b9c633c74aa9340d5018ee712b062

    same problem here - just upgraded in the last month to Windows 7, running Acrobat 9.3 STD.
    HP elitebook 8730W, 1/2 gig on the nvidia Quadro graphics card and 4 gb ram - so that's not the problem, 2.8 ghz on the intel core duo - better not be the problem.
    very unstable - crashes every time I try to open more than 1 pdf at a pop.  Also routinely crashes when doing simple thinks like putting a sticky note on a doc.  Very slow on any search functions.
    I've lost many many hours to this program in the last month.  any permanent solutions would be greatly appreciated.

  • Problem Printing Content from added comments

    Using Adobe Reader Version 10.1.2 on both 32 and 64 bit Windows 7 installations
    it is not possible to print the text from comments added to PDF's.
    When there is one comment this works fine.
    Where there are many comments they all print on the summary page one on top of another.
    Does anyone have or know of a solution?
    Thankx in advance

    I believe you are trying to do file->print->summarize comments which summarizes all the comments on a separate page and then prints it. It is the intended behavior.
    If you would like to print comments as they appear on screen. Then you would have to enable the “pop up notes” from commenting pane in preference. However, all pop-up notes have to be expanded(by explicityly clicking on them) if you want to see them in your prints as is and then click print and not summarize comments. I hope this description helps.
    Thanks,
    Atul

  • Defaults for 'Print with comments summary'

    Hi,
    I'm working in Acrobat Pro 7, and often need to use "Print with comments summary". This always launches with paper size set to "letter" and layout set to "Document and comments with sequence numbers on separate pages". But I always want "A4" and "Document and comments with connector lines on single pages". Is there any way I can make this the default?

    Anybody?

  • How does one print a summary list of inbox messages?

    I'd like to be able to print a summary list of all or selected messages contained in my Mail 4.2 inbox. All I'm hoping for is a simple FROM / SUBJECT / DATE RECEIVED line by line summary, not unlike what one sees in the standard Mail viewer (right side window).
    Amazingly, there appears to be no easy way to do this. Selecting multiple messages and using MAIL / FILE / PRINT only results in the first highlighted message being printed in full. The same is true when one tries MAIL / FILE / SAVE AS. I also tried selecting several messages in the viewer and using EDIT / COPY; however the resulting paste into TextEdit included the entire contents of each selected message.
    Help!

    I think I can create what you want simply by launching Utilities/Grab and choosing Capture > Selection and outline the pane?
    EDIT: commandshift4 is even faster.
    -mj
    Message was edited by: macjack

  • Acrobat 7 Pro - Comment Summary Font Issue

    We have a situation involving font usage in comments in Acrobat 7 Pro that I hope someone can shed some light on. It will be some time before we can move to version 8 or 9, so the problem is important to us.
    Here's the symptom, then I have a few basic background questions. The text in a Note comment includes a 'less than or equal to' symbol which appears correctly. The problem comes when the comments are summarized to a PDF file or printed. The 'equal to' portion has now disappeared! I first thought that this might be a font issue, but now am unsure.
    My basic questions are:
    What font is Acrobat using when a comment is created? I realize that you can set a preference for which font to use when viewing comments, but apparently not when creating them?
    When a comment summary is created to a PDF file, what determines which font is used in the summary? We have seen cases where the resulting PDF has used Arial or Tahoma or SimSun or.........
    We have had at least one situation where opening the same Acrobat 7 PDF in Acrobat 8 Pro did not exhibit the problem when summarized there. Was this a known issue that was repaired in Acrobat 8?
    Thanks much for any information you can provide.

    Hi David,
    This is a known issue with Acrobat on Mac.
    Please follow the steps mentioned in the KB : http://helpx.adobe.com/acrobat/kb/blank-eula-screen-appears-acrobat.html

Maybe you are looking for