Skip to main content
Known Participant
May 15, 2013
Question

How to set Inside and outside margin?

  • May 15, 2013
  • 1 reply
  • 687 views

Hi All,

How to set Inside and outside margin?

thanks in advance,

Learner

This topic has been closed for replies.

1 reply

Jump_Over
Legend
May 15, 2013

Hi,

You should use .left and .right property of marginPreferences (for page or for document)

if document facingPages == true ==> they were used for inside (left) and outside (right)

i.e.

myDoc.documentPreferences.facingPages = true;

myDoc.masterSpreads[0].pages[0].marginPreferences.left = 35;

myDoc.masterSpreads[0].pages[1].marginPreferences.left = 35;

to set inside margine for 1st master spread

Jarek