Created
November 3, 2011 03:54
-
-
Save vladocar/1335730 to your computer and use it in GitHub Desktop.
Make Guides Grid with number of guides in Photoshop CS5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var doc = app.activeDocument; | |
var guides = app.activeDocument.guides; | |
var w = doc.width; | |
var h = doc.height; | |
function MakeGuidesGrid(numVerticalGuides, gutterVertical, numHorisontalGuides, gutterHorisontal) { | |
if (numHorisontalGuides !== 0) { | |
var j = h / numHorisontalGuides; | |
for (var i = 0; i < numHorisontalGuides; i++) { | |
guides.add(Direction.HORIZONTAL, j * i); | |
guides.add(Direction.HORIZONTAL, j * i + gutterHorisontal); | |
} | |
} | |
if (numVerticalGuides !== 0) { | |
var z = w / numVerticalGuides; | |
for (var i = 0; i < numVerticalGuides; i++) { | |
guides.add(Direction.VERTICAL, z * i); | |
guides.add(Direction.VERTICAL, z * i + gutterVertical); | |
} | |
} | |
} | |
MakeGuidesGrid(parseInt(prompt("Insert the number of Vertical guides", 40)), parseInt(prompt("Insert the Vertical gutter size", 10)), parseInt(prompt("Insert the number of Horisontal guides", 40)), parseInt(prompt("Insert the Vertical gutter size", 10))); | |
//MakeGuidesGrid(40,10,40,10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment