Answered
Trying to create a Duplicate Layer with a new name
I have the following code;
var docRef = activeDocument
var newdLayer = docRef.activeLayer.duplicate();
newdLayer;
docRef.activeLayer = docRef.layers["Background copy"]
docRef.activeLayer.applyGaussianBlur(20);
What I really want to do is create the new layer with the name BLUR because the original layer may not be the background
New to this and looking to learn
Mike

