fabianmoronzirfas
3/12/2014 - 3:49 PM

create-guidelines.jsx

// create horizontal guide on masterspread
// see http://jongware.mit.edu/idcs6js/pc_Guide.html
// or http://yearbookmachine.github.io/esdocs/#/InDesign/Guide
(function(thisObj){

  var doc = app.activeDocument;
  var spread = doc.masterSpreads[0];
  spread.guides.add({
    orientation:HorizontalOrVertical.HORIZONTAL,
    location:"800px"
    });

  })(this);