Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

unlock background layer

0 views
Skip to first unread message

domi...@adobeforums.com

unread,
Nov 3, 2008, 10:52:17 PM11/3/08
to
How do I unlock the background layer without duplicating it first and deleting the locked layer. It's a nuisance. I never ever want that background layer locked. why is photoshop locking it by default?

Welles_...@adobeforums.com

unread,
Nov 3, 2008, 10:59:57 PM11/3/08
to
Double click on the background layer. A new layer dialog pops up allowing you to name it and change a few options or just hit return and have Background renamed Layer 0 and it will be a floating layer. Why? It's a convention which has been around since the beginning of Photohsop, I think.

domi...@adobeforums.com

unread,
Nov 4, 2008, 12:05:34 AM11/4/08
to
thanks. that helps. still doesn't make sense why you can't just unlock it clicking the "lock" icon this was new with CS

Ram�n_G_Casta�eda@adobeforums.com

unread,
Nov 4, 2008, 1:46:02 AM11/4/08
to
No, it was not "new in CS" domihode.

Ed Hannigan

unread,
Nov 4, 2008, 8:40:40 AM11/4/08
to
It's been that way since what....PS 5 or maybe earlier. Before that you could use the Move (or Command key) to to move the Background and convert it to a Layer, which could lead to mistakes from time to time.

Hold down Option while double-clicking on it to skip the naming dialog.

Why is it a nuisance to have a locked Background? Do you very often need to move it around?

Ramón_G_Castañeda@adobeforums.com

unread,
Nov 4, 2008, 5:56:29 PM11/4/08
to

It's been that way since what....PS 5 or maybe earlier.


Right. I've been using Photoshop since version 5.0, and it has always been this way for me.

Phosąfour dots

unread,
Nov 4, 2008, 7:21:12 PM11/4/08
to
Just fired up PS 4.x. …

Create a new document, and the Background is unlocked. If you choose the Move Tool, and click-n-drag in the document window, it will move revealing the checkerboard transparency indicator and automatically rename to "Layer 0"

In PS 4, neither the Background nor any layers above it can be locked into place. They can be made uneditable, but only by toggling their visibility to "off."

Ed Hannigan

unread,
Nov 5, 2008, 8:01:13 AM11/5/08
to
Right. I started on PS 4 and remember that.

I think having it locked by default was an improvement.

Phosąfour dots

unread,
Nov 5, 2008, 9:19:42 AM11/5/08
to
Oh, so do I, Ed.

It's always been simple enough to promote to a regular layer. I like having the Background locked by default.

Jack_...@adobeforums.com

unread,
Nov 5, 2008, 7:30:14 PM11/5/08
to
I have always wondered why they locked the initial layer. Many times I will open a picture to do alterations on it, and many times I have to unlock that layer, pretty much all the time actually. It is simple to promote to a regular layer, I just don't see the productivity enhancement in locking it.

Many times a regular image you open will just have 1 layer, and the whole layer is the background layer. I agree that locking the "background" is a good idea, but not when an image is 99% of the time interpreted as a single layer, in the form of a locked background layer. Not that I'm sitting here day in and day out pulling my hair out over it, but it is slighty perplexing and slightly annoying, and I've always wanted to ask a Photoshop Guru the benefits of making this happen by default with no option to change it at all.

Buko

unread,
Nov 5, 2008, 8:02:19 PM11/5/08
to
Locking the layer stops you from moving it thats all you can do anything else to it.

Ramón_G_Castañeda@adobeforums.com

unread,
Nov 5, 2008, 9:23:52 PM11/5/08
to
If you use something like PhotoKit Sharpener, it won't even work if the background layer has been unlocked. PKS won't even recognize it as a background layer. Period.

domi...@adobeforums.com

unread,
Nov 6, 2008, 10:37:14 PM11/6/08
to
a locked background layer is a nuisance to anyone creating serious composites. Still doesn't make sense why you can't just click the "lock" icon to unlock it. "Photoshop help" wasn't even able to answer me the question. I've worked with photoshop since 2.0. It always bothered me since they changed it whenever that was, but not enough to take the time to really figure out how to unlock it. I always just duplicated the layer and deleted the original. option click will make my life easier.

Phosąfour dots

unread,
Nov 6, 2008, 11:44:43 PM11/6/08
to

" I've worked with photoshop since 2.0. It always bothered me since they
changed it whenever that was,"


And you're still complaining about the change? Jeebers, I forget about old ways of doing things within 2 months of a change, mostly because I know I can't change them back. I move on, learn the new way, and internalize the process.

I guess some of us just adapt quicker than others.

But hanging on to a disappointment for about 10 years? Wow.

Scott_W...@adobeforums.com

unread,
Nov 7, 2008, 1:14:02 AM11/7/08
to
Set the background to transparent for any new file... no locked background layer.

Phosąfour dots

unread,
Nov 7, 2008, 1:18:52 AM11/7/08
to
I know about one zillionth of one iota about scripting, but I have a hunch that a script could be written (or, more likely揺as already been authored) that will, in effect, unlock any image opened, automatically.

Pau...@adobeforums.com

unread,
Nov 7, 2008, 4:42:10 AM11/7/08
to
Yes it can be done....

This should do the job..
Save the script as FileName.jsx, and set uo scripts event manager to call the script on open new document.



if(hasBackground()){

activeDocument.activeLayer = activeDocument.artLayers.getByName("Background");

activeDocument.activeLayer.isBackgroundLayer = false;

}

function hasBackground() {

var ref = new ActionReference();

ref.putProperty(charIDToTypeID("Prpr"), charIDToTypeID("Bckg"));

ref.putEnumerated(charIDToTypeID("Lyr "),charIDToTypeID("Ordn"),charIDToTypeID("Back"));

var desc = executeActionGet(ref);

var res = desc.getBoolean(charIDToTypeID("Bckg"));

return res;

};

0 new messages