-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathRename Selected Layers With Numbers.jsx
48 lines (42 loc) · 1.54 KB
/
Rename Selected Layers With Numbers.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/**
* @name Rename Selected Layers With Numbers
* @version 2.2
* @author Kyle Martinez <www.kyle-martinez.com>
*
* @description Rename the selected layers appending zero-padded numbers as needed.
*
* @license This script is provided "as is," without warranty of any kind, expressed or implied. In
* no event shall the author be held liable for any damages arising in any way from the use of this
* script.
*
* I'm just trying to help make life as an After Effects animator a little easier.
*/
(function renameLayersWithNumbers() {
String.prototype.padStart = function(length, pad) {
return Array(Math.max(length - this.length + 1, 0)).join(pad) + String(this);
};
function getLength(numLayers) {
return Math.max(numLayers.toString().length, 2);
}
function getNumber(index, length) {
return String(index).padStart(length, "0");
}
function renameLayers(layers, numLayers, name) {
var length = getLength(numLayers);
for (var l = 0; l < numLayers; l++) {
layers[l].name = name + " " + getNumber(l + 1, length);
}
}
app.beginUndoGroup("Rename Layer(s) With Numbers");
var comp = app.project.activeItem;
var layers = comp.selectedLayers;
var numLayers = layers.length;
if (numLayers > 0) {
var oldName = layers[0].name;
var newName = prompt("Rename Layer(s) With Numbers", oldName);
if (newName !== null && newName.length > 0) {
renameLayers(layers, numLayers, newName);
}
}
app.endUndoGroup();
})();