DocPreset from Current Document

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

  1. #1

    Default Re: DocPreset from Current Document

    Hi, I have a related issue:

    Dave Saunders said:

    That's because you can't change the document preferences for the >margins
    after you've created a document.




    Is this true?? I'm setting up a template for a series of reports, and in the design process have decided to adjust the margins. I've changed them on all existing document pages and all master pages. The thing is I can't change them on the [none] master page (nor can I delete it). Is there any way to fix this problem without having to create a new document with the correct margins and copy everything over?? I don't want to risk leaving a master page in there that has the wrong margins, as the template will be used by many people and I can't guarantee they won't use it.

    Thanks!
    Robin_McAlpine@adobeforums.com Guest

  2. Similar Questions and Discussions

    1. Print a pdf document with a current timestamp...
      I'd like to be able to print a pdf with the current date and time. I found a third party s/w to do the job but I believe Acrobat is capable of doing...
    2. Run the current document in a perticular browsere
      hi, I want to run my the current ducment in firefox, if it is not available alert ( Firefox is not found !) my code this way, but it parses...
    3. Reload current document?
      Running DW8, building an insertObject() extension; 2 problems that appear related to loading the current document. Problem 1: DW maintains the...
    4. Either BOF or EOF is True, or the current record hasbeen deleted. Requested operation requires a current record
      Can anyone pls help? I am getting the following error when search my database. "ADODB.Field (0x800A0BCD Either BOF or EOF is True, or the...
    5. How to change the current thread current culture at run time.
      I have created a new culture : Dim objCulture As New CultureInfo("he") //hebrew When I tried to assign it to the current thread. ...
  3. #2

    Default Re: DocPreset from Current Document

    You can do it with a JavaScript, but I don't think it's possible in the UI:

    aDoc = app.documents[0];
    aDoc.marginPreferences.top = 2.5;
    aDoc.marginPreferences.bottom = 6.3;
    aDoc.marginPreferences.left = 1.415;
    aDoc.marginPreferences.right = 2.375;

    Since None is always a single page, I don't think you have to worry about the mapping of left and right on to facing pages. Obviously, you should replace my silly numbers with ones that make sense for you.

    Dave
    Dave_Saunders@adobeforums.com Guest

  4. #3

    Default Re: DocPreset from Current Document

    It worked. Thanks!
    Robin_McAlpine@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