Copy link to clipboard
Copied
Is it possible to select the first (top) path, regardless of its name, with a shortcut or a script?
Note: Not making a selection of the path but select the path it self in the path menu. (So that I can rename it with a shortcut.)
I like to know how.
1 Correct answer
Selecting the topmost Path in the Paths Panel is not the same as double-clicking its name field, though.
// 2017, use it at your own risk;
#target photoshop
if (app.documents.length > 0) {
var myDocument = app.activeDocument;
if (myDocument.pathItems.length > 0) {
myDocument.pathItems[0].select()
}
};
Explore related tutorials & articles
Copy link to clipboard
Copied
Selecting the topmost Path in the Paths Panel is not the same as double-clicking its name field, though.
// 2017, use it at your own risk;
#target photoshop
if (app.documents.length > 0) {
var myDocument = app.activeDocument;
if (myDocument.pathItems.length > 0) {
myDocument.pathItems[0].select()
}
};
Copy link to clipboard
Copied
Is it always to be the same name or do you intend to manually enter the new name?
Copy link to clipboard
Copied
Always the same name: Path 1
(I rename it with an action.)
Thanks 4 your help!
Copy link to clipboard
Copied
Then try this:
// 2017, use it at your own risk;
#target photoshop
if (app.documents.length > 0) {
var myDocument = app.activeDocument;
if (myDocument.pathItems.length > 0) {
myDocument.pathItems[0].name = "Path 1"
}
};

