Skip to main content
Inspiring
April 29, 2011
Open for Voting

P: Custom Guides (groupable, colorable, nameable guides)

  • April 29, 2011
  • 81 replies
  • 4228 views

Hi! I've been thinking this for quite a while, and I know most of the web designers out there have the same need... groupable, colorable, nameable guides.

It's important to use guides. But sometimes it gets a little messy.

What would be perfect is if guides had their own layer-style format. And each group, or layer, had an asigned color. You could turn on and off visibility of specific groups, or just turn them all off by hitting cmd + H, as we do today.

This would make photoshop THE perfect software for web design.

81 replies

Inspiring
January 30, 2015

c.pfaffenbichler
Community Expert
Community Expert
December 31, 2014
Its probably worth checking out Paul Riggott’s Script for Guide Sets here
https://forums.adobe.com/thread/93283...
and maybe this JavaScript could help:

// take guides from active document and add them to other open documents after removing their existing guides;
// 2013, use at your own risk;
#target photoshop
if (app.documents.length > 0 && app.activeDocument.guides.length > 0) {main()};
////// function //////
function main () {
// set to pixels;
var myDocument = app.activeDocument;
var originalRulerUnits = app.preferences.rulerUnits;
app.preferences.rulerUnits = Units.PIXELS;
// collect guides;
var theArray = new Array;
for (var m = 0; m < myDocument.guides.length; m++) {
theArray.push([myDocument.guides[m].coordinate, myDocument.guides[m].direction])
};
app.preferences.rulerUnits = originalRulerUnits;
// get all open documents;
var theDocs = app.documents;
for (var o = 0; o < app.documents.length; o++) {
var thisDocument = app.documents[o];
// proceed if not original document;
if (thisDocument != myDocument) {
app.activeDocument = thisDocument;
var originalRulerUnits = app.preferences.rulerUnits;
app.preferences.rulerUnits = Units.PIXELS;
// remove existing guides;
for (var n = thisDocument.guides.length-1; n >=0; n--) {
thisDocument.guides[n].remove()
};
// add guides;
for (var p = 0; p < theArray.length; p++) {
thisDocument.guides.add(theArray[p][1], theArray[p][0]);
};
app.preferences.rulerUnits = originalRulerUnits;
};
};
};
Inspiring
December 31, 2014


I would like a way to export the guides from a photoshop file to another.
Currently the only thing I can do is trace the guides and past the paths to the other file but I fear that some pixels are overlooked when I do this so a tool inside the program that would do this properly, like what we have iwth illustrator, would be nice
Participant
November 3, 2014


If you want to have multiple layouts in one Photoshop file, it would be nice to arrange guidelines in groups.
Same as layergroups.
c.pfaffenbichler
Community Expert
Community Expert
September 24, 2014
The 10-year-Illustrator-bug is indeed not relevant to the topic of this thread but the question
»llustrator has manageable guides- why can't Photoshop?«
does imply a comparison between a vector- and a pixel-oriented application and that those will exhibit inherent differences seemed worth pointing out.

»When an aeroplane does have an altimeter why doesn’t my car?«
Known Participant
September 23, 2014
Christoph- um, what? This thread, and the statement you quoted, are about guides. You seem to have missed the point.
c.pfaffenbichler
Community Expert
Community Expert
September 23, 2014
»llustrator has manageable guides- why can't Photoshop? «
When comparing pixel and vector oriented applications one is likely to observe differences.
And in Illustrator at least one bug has been maintained for roughly 10 years – so it’s fine with me if the Photoshop team does not emulate everything going on at the Illustrator team.
Known Participant
September 22, 2014
3 years- this post started 3 years ago- and nothing. And I know that this has been a request by users for well more than 3 years.

Illustrator has manageable guides- why can't Photoshop?

This is why Adobe really needs to start from scratch with the entire Creative Suite and have them all work in similar ways instead of continually patching Frankenstein code from programs they purchased or wrote decades ago.

SERIOUS REQUEST (almost a demand at this point):
1. Each guide either shows as a layer or in a separate "guides" panel.
2. Each guide, or group of guides, can be colored, labeled, etc.
Inspiring
September 10, 2014


The ability to change color of individual or multiple guides would be very nice/helpful. Currently most people create a layer and make lines, or shapes and work off of those, but I feel like that is a fix for what they feel is lacking in the ability of the guides.
Participant
September 8, 2014


Very Simple and useful for those who make diagramming albums.