Getting overprint preview preference in Adobe Acrobat 9

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

  1. #1

    Default Getting overprint preview preference in Adobe Acrobat 9

    Hello,

    yesterday I installed the Adobe Acrobat 9 Trial and I tried my plugin.

    Does anyone know how to get the overprint preview setting?

    In older version of Adobe Acrobat I'm using following code:

    AVAppGetPrefBool(DSAVSettings[prefNumber].m_section, DSAVSettings[prefNumber].m_name, (ASBool)DSAVSettings[prefNumber].m_requiredValue_9);

    m_section is "Originals" and m_name is "Overprint Preview".

    In Adobe Acrobat 9 it always returns the default value m_requiredValue_9 which means that the setting can not be found?

    Do I have to change the value of m_section or m_name or do I have to use an other method?

    Thanks for your help!

    Christian Wiesbauer
    c_wiesbauer@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Acrobat 9: Overprint Preview
      Laura, I'm grateful for your knowledge and kindness. Will keep my eyes open for these resources you mention.
    2. Overprint preview in reader 6
      Is there an option to turn on overprint preview in reader 6
    3. How accurate is the overprint preview?
      I am looking for a bright red PMS to be overprinted on tan paper (Desert Storm which is close to PMS 7503.) When I simulate the tan paper color using...
    4. Overprint Preview Not Working
      Ok in Quark bring in a greyscale pic in a box with no background - position over another box with a background - default Quark trapping behaviour is...
    5. Overprint Preview?
      I am working on a full color catalog. When I save the document it says the name of the file at the top of the page and in brackers (overprint...
  3. #2

    Default Re: Getting overprint preview preference in Adobe Acrobat 9

    Hi,

    I solved the problem. Here is the code for getting this preference in Adobe Acrobat 9:

    AVAppGetPrefInt(avConfigEntryTemp.m_section, avConfigEntryTemp.m_name, (ASInt32)avConfigEntryTemp.m_requiredValue_9);

    where m_section is "AVDisplay" and m_name is "OverprintPreview".

    Best regards,
    Christian Wiesbauer
    c_wiesbauer@adobeforums.com Guest

  4. #3

    Default Re: Getting overprint preview preference in Adobe Acrobat 9

    Can you tell me why you need to get that preference? Do you also set it as well, and why?
    Leonard_Rosenthol@adobeforums.com Guest

  5. #4

    Default Re: Getting overprint preview preference in Adobe Acrobat 9

    I have to set this preference because it's a requirement for my plugin which is used for digital signing.

    It ensures that you only sign what you see and there is no dynamical content in your PDF which is a requirement by law in the country for which I develop the plugin.
    c_wiesbauer@adobeforums.com Guest

  6. #5

    Default Re: Getting overprint preview preference in Adobe Acrobat 9

    That sounds like the "Signature Preview Mode" in Acrobat & Reader already. Are you duplicating this functionality? Why not use what is already there?
    Leonard_Rosenthol@adobeforums.com Guest

  7. #6

    Default Re: Getting overprint preview preference in Adobe Acrobat 9

    Oh, sounds interesting! I didn't know that there is such an option. I think this is available since Adobe Reader and Acrobat 8.0, right? I will give it a try!

    Thanks for this advice!

    Christian Wiesbauer
    c_wiesbauer@adobeforums.com Guest

  8. #7

    Default Re: Getting overprint preview preference in Adobe Acrobat 9

    Yes, Preview mode was introduced in Acrobat/Reader 8.
    Leonard_Rosenthol@adobeforums.com Guest

  9. #8

    Default Re: Getting overprint preview preference in Adobe Acrobat 9

    I'm having a problem with securing specific fields. Not sure if that can be done. I have a form that I created in LiveCycle Designer and the forms contains fields that create a basic calculation for example (Qty+Price=Total). I want those fields to be field out by our sales people and I want them to save the form with the info. field in and email to customer as a quote basically, but I don't want the customer to be able to change those numbers, but I do want the customer to fill in other portions of the field. Having a problem doing this cause Acrobat is only letting me secure the whole form and not just portions. Is there a way to only secure portions of a form. Please help ASAP.

    Thank You
    Chris12@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