Created
January 17, 2012 21:16
-
-
Save vladocar/1628924 to your computer and use it in GitHub Desktop.
Layer names list in Photoshop
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 layerNum = app.activeDocument.layers.length; | |
var a = []; | |
for (var i = 0; i < layerNum; i++) { | |
a[i] = '"' + app.activeDocument.layers[i].name + '"'; | |
} | |
prompt("Layers Names:", a); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment