How to print only pages that have comments?

Ask a Question related to Adobe Acrobat Macintosh, Design and Development.

  1. #1

    Default How to print only pages that have comments?

    Using Acrobat Professional 7.0.8, on a Mac running system 10.4, I'd like to print out only the pages that have comments on them (and the comments, too).

    I know I've done this before, but it may have been with an earlier version of Acrobat. I can't figure out where/how to do this... Help?
    Mark_Lerner@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Acrobat 6.0: Can I print pages without comments?
      Is there a well-hidden setting that would allow me to print pages that do not have any comments applied when printing with comments? (Example: I've...
    2. Few pages print fine, print all pages and there's trouble.
      I have a 400+ page PDF file created primarily from Excel worksheets printed through distiller and assembled in Acrobat 6. Some pages are landscape...
    3. Adobe 6.0 - Print - Document and Comments
      I know how to print the document and comments (File - Print - Print What: check Document and Comments), as indicated in your Frequently Asked...
    4. Summarize or Print Comments does nothing
      The comments all were added inside Acrobat using the native tools, and thus they ARE Acrobat comments, i.e. not imported from the original file. ...
  3. #2

    Default Re: How to print only pages that have comments?

    - Use a JavaScript to scan the PDF "this.syncAnnotScan"

    - Then make a variable (i.e. "a" ) equal to zero and then increment it one for every page in the document.

    - Make another variable (i.e. "b") equal to "this.getAnnots" using the first variable ( "a" ) as the "nPage:" value.

    - Set an "IF" statement checking if the second value ( "b") is not NULL then use "this.print" using the first variable ( "a") as both the "nStart:" and "nEnd" parameters.

    - Make sure that you have the preference set to print comments in the Acrobat Preferences.

    Cheers,
    Rocky
    Rocket_Jay_Squirrel@adobeforums.com Guest

  4. #3

    Default Re: How to print only pages that have comments?

    Thank you very much for the answer. I was hoping for a way to do it through Acrobat's features, though, which is how I did it in the past. I don't have the slightest idea how to use JavaScript.
    Mark_Lerner@adobeforums.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139