How to Save document properties

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

  1. #1

    Default How to Save document properties

    Hi,

    I am working on a project in which I have to set the properties in coding for a pdf document i.e Magnification, Initial view, pagelayout [Single page, Continuous etc using the funtion AVPageViewSetlayoutmode], Initial [default] open page Number etc, that thing I am doing and I am getting it correctly. But I can't find proper funtion for saving the above properties after setting. I tried AVDocDoSave, SavePDDoc, but it doesn't work. can anybody Please tell me How can I save the document properties.

    Thank you,

    Uma Kanthi.
    palaksha@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. document array has no properties
      Why doesn't DW8 like document arrays assigned to variables? Using the syntax, formInput = document.getElementsByTagName("input") Returns an...
    2. Document Properties using cos method
      Hi, I want to get document properties like Page layout, Magnification and open number using Acrobat 6.0 SDK.I am able to get dictionary catalog....
    3. Changing the Document Properties
      Hi, I want to change the document properties like Page layout, Magnification... My code as shown below: AVPageView avPageView =...
    4. set document properties
      How to set the document properties of pdf file like Author/Title using Acrobat IAC? I assigned the property GetJSObject to an object variable and...
    5. Document properties default
      Is there a way to have a custom set of document properties (initial view etc) applied to a set of PDFs - either by batch processing or just by...
  3. #2

    Default Re: How to Save document properties

    An AVPageView corresponds to a view of the document - a user
    interface. Changing its properties does not edit the underlying
    document (PDDoc), so saving will do nothing.

    What methods are you using, bearing in mind that you can't do what you
    want with AVPageView or AVWindow methods?

    Aandi Inston
    Aandi_Inston@adobeforums.com Guest

  4. #3

    Default Re: How to Save document properties

    Hi Aandi,
    I am working on Acrobat 6.0, Iwant to set document properties and then save, so which method is suitable for that purpose, please guide me.

    Thank you very much,

    Uma
    palaksha@adobeforums.com Guest

  5. #4

    Default Re: How to Save document properties

    You probably need to start by establishing what the Open Options
    dialog sets,working in conjunction with a live PDF,for analysis, and
    the PDF Reference. You could use the PDF Reference alone, but that is
    harder work.

    Once you have the information on what needs to change you can use the
    Cos layer. Some other APIs may streamline things e.g.
    PDDocSetOpenAction.

    Aandi Inston
    Aandi_Inston@adobeforums.com Guest

  6. #5

    Default Re: How to Save document properties

    Thanks for your reply.
    I want to set the document options in document properties like pagelayout, Magnification, open page number and show( Page only, Bookmarks & page etc) and save the document. Can you tell me what methods i need to use like PDDocSetLayoutMode. Please tell me what methods i can use to set the document properties.

    Thanks,
    Uma Kanti.
    palaksha@adobeforums.com Guest

  7. #6

    Default Re: How to Save document properties

    Ah, I wasn't aware of PDDocSetLayoutMode, as it is new in 7.0. That
    will save you some time. Also, I see PDDocSetPageMode. These may save
    you a lot of time, indeed. Now you just need to read about the
    relevant keys in the PDF Reference.

    Aandi Inston
    Aandi_Inston@adobeforums.com Guest

  8. #7

    Default Re: How to Save document properties

    Thanks for your response.
    I need method to set layout mode and magnification for the document. Using PDDocSetPageMode i am setting page mode. Please tell me the method to set page layout and Magnification for the docuemnt.
    palaksha@adobeforums.com Guest

  9. #8

    Default Re: How to Save document properties

    I have explained how I would approach this.

    Aandi Inston
    Aandi_Inston@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