Is there a way to lock transparent pixels for more than one layer at a time?

I've tried selecting multiple layers to modify but the lock transparent pixels box becomes greyed out once I've selected more than one layer. Apologies in advance if this is deemed to be a stupid question but it would be greatly appreciated if someone knows of a solution. It would be very handy for some of the projects I'm currently developing.
Thanks.

I have not had a problem in Photoshop CC 2014 as long as I selected a layer with transparency, in my case the gray checkerboard. The button would dim if I selected an adjustment layer.

Similar Messages

  • HT1040 Is there a way to place an order with more than one item at a time? For example I am going to make a few books and have them all shipped to me.  Do I have to order and pay shipping for each one individually?

    Is there a way to place an order with more than one item at a time?  for example I am making a few books and having them all shipped to me.  Do I have to order each one separately and pay shipping each time?

    You have to order each book separately, if the books are different. Only multiple copies of the same book can be ordered in the same order, see here
    Regards
    Léonie

  • Is there a way to put an item under more than one calendar at the same time?

    I use the calendar to keep track of not only my schedule, but my entire family's. For years I had a calendar labeled 'kids.' Now as they're getting older it would be easier to have an individual calendar for each child. Easier for me to track where they are and they could have they're own calendar on their iphone or iphone touch since we all share one cloud account. However, frequently more than one is at the same activity. The calendar program will only allow me to select one calendar to place an event under; as soon as I select another, it deselects the first. Is there a way to place an event under more than one calendar?
    (Since I'm still the one driving that needs to know date, time, place, etc type details I don't want them adding it to their own schedule - maybe -  on their devides and synching through cloud)

    You can create many calendars. Here's the tip:
    Example: you have 1 son and 1 daughter.
    In iCloud ( https://www.icloud.com )
    Create 1 calendar called Son ( Choose a color to tell them apart )
    Create 1 calendar called Daughter ( Ditto )
    Create 1 calendar called Kids
    Since you are the creator, you get to see all calendars combined.
    Send invitations to each of them
    Son gets Son and Kids calendars
    Daughter gets Daughter and Kids calendars
    So if there an event for Son, just put in that calendar
    If it's for both then enter it in the Kids calendar
    Likewise for daughter.

  • Is there a datatype that allows me to store more than one item at a time

    Hello Everyone,
    Is there a datatype that allows me to store more than one item at a time , in a column in a row?
    I have to prepare a monthly account purchase system. Basically in this system a customer purchases items in an entire month as and when required on credit and then pays at the end of the month to clear the dues. So, i need to search the item from the inventory and then add it to the customer. So that when i want to see all the items purchased by a customer in the current month i get to see them. Later i calculate the bill and then ask him to pay and flushout old items which customer has purchased.
    I am having great difficulty in preparing the database.
    Please can anyone guide me! i have to finish this project in a weeks time.
    Item Database:
    SQL> desc items;
    Name Null? Type
    ITEMID VARCHAR2(10)
    ITEMCODE VARCHAR2(10)
    ITEMPRICE NUMBER(10)
    ITEMQUAN NUMBER(10)
    Customer Database:
    SQL> desc customerdb;
    Name Null? Type
    CUSTID VARCHAR2(10)
    CUSTFNAME VARCHAR2(20)
    CUSTLNAME VARCHAR2(20)
    CUSTMOBNO NUMBER(10)
    CUSTADD VARCHAR2(20)
    I need to store for every customer the items he has purchased in a month. But if i add a items purchased by a customer to the customer table entries look this.
    SQL> select * from customerdb;
    CUSTID CUSTFNAME CUSTLNAME CUSTMOBNO CUSTADD ITEM ITEMPRICE ITEMQUANTITY
    123 abc xyz 9988556677 a1/8,hill dales soap 10 1
    123 abc xyz 9988556677 " toothbrush 18 1
    I can create a itempurchase table similar to above table without columns custfname,csutlnamecustmobno,custadd
    ItemPurchaseTable :
    CUSTID ITEM ITEMPRICE ITEMQUANTITY
    123 soap 10 1
    123 toothbrush 18 1
    ill just have it as follows. But still the CUSTID FK from CustomerDB repeats for every row. I dont know how to solve this issue. Please can anyone help me.
    I need to map 1 customer to the many items he has purchased in a month.
    Edited by: Yukta Lolap on Oct 8, 2012 10:58 PM
    Edited by: Yukta Lolap on Oct 8, 2012 11:00 PM

    You must seriously read and learn about Normalization of tables; It improves your database design (at times may increase or decrease performance, subjective cases) and eases the Understanding efforts for a new person.
    See the below tables and compare to the tables you have created
    create table customers
      customer_id       number      primary key,
      fname             varchar2(50)  not null,
      mname             varchar2(50),
      lname             varchar2(50)  not null,
      join_date         date          default sysdate not null,
      is_active         char(1)     default 'N',
      constraint chk_active check (is_active in ('Y', 'N')) enable
    create table customer_address
      address_id        number      primary key,
      customer_id       number      not null,
      line_1            varchar2(100)   not null,
      line_2            varchar2(100),
      line_3            varchar2(100),
      city              varchar2(100)   not null,
      state             varchar2(100)   not null,
      zip_code          number          not null,
      is_active         char(1)         default 'N' not null,
      constraint chk_add_active check (is_active in ('Y', 'N')),
      constraint fk_cust_id foreign key (customer_id) references customers(customer_id)
    create table customer_contact
      contact_id        number      primary key,
      address_id        number      not null,
      area_code         number,
      landline          number,
      mobile            number,
      is_active         char(1)   default 'N' not null,
      constraint chk_cont_active check (is_active in ('Y', 'N'))
      constraint fk_add_id foreign key (address_id) references customer_address(address_id)
    create table inventory
      inventory_id          number        primary key,
      item_code             varchar2(25)    not null,
      item_name             varchar2(100)   not null,
      item_price            number(8, 2)    default 0,
      item_quantity         number          default 0,
      constraint chk_item_quant check (item_quantity >= 0)
    );You may have to improvise and adapt these tables according to your data and design to add or remove Columns/Constraints/Foreign Keys etc. I created them according to my understanding.
    --Edit:- Added Purchases table and sample data;
    create table purchases
      purchase_id           number        primary key,
      purchase_lot          number        unique key  not null,     --> Unique Key to map all the Purchases, at a time, for a customer
      customer_id           number        not null,
      item_code             number        not null,
      item_price            number(8,2)   not null,
      item_quantity         number        not null,
      discount              number(3,1)   default 0,
      purchase_date         date          default sysdate   not null,
      payment_mode          varchar2(20),
      constraint fk_cust_id foreign key (customer_id) references customers(customer_id)
    insert into purchases values (1, 1001, 1, 'AZ123', 653, 10, 0, sysdate, 'Cash');
    insert into purchases values (2, 1001, 1, 'AZ124', 225.5, 15, 2, sysdate, 'Cash');
    insert into purchases values (3, 1001, 1, 'AZ125', 90, 20, 3.5, sysdate, 'Cash');
    insert into purchases values (4, 1002, 2, 'AZ126', 111, 10, 0, sysdate, 'Cash');
    insert into purchases values (5, 1002, 2, 'AZ127', 100, 10, 0, sysdate, 'Cash');
    insert into purchases values (6, 1003, 1, 'AZ123', 101.25, 2, 0, sysdate, 'Cash');
    insert into purchases values (7, 1003, 1, 'AZ121', 1000, 1, 0, sysdate, 'Cash');Edited by: Purvesh K on Oct 9, 2012 12:22 PM (Added Price Column and modified sample data.)

  • How do I "Select pixels" on more than one layer, then "Paint bucket" ?

    Hi
    Using Photoshop CS4.
    I have a document with several layers.
    If I right click a layer in the "Layers UI" and then click "Select pixels" then the pixels in that layer is selected.
    Then I can use the "Paint bucket" to e.g. set another color for the selected pixels.
    Is it possible to "Select pixels" from more than one layer, and then use "Paint bucket" once to change color for all the selected pixels in one go?

    You wont be able to FILL more than one layer at a time.
    But loading seections can be done by holding control SHIFT and clicking on the layer thumnail in the layers panel. Each click will load more area depending on which layers you load

  • Is there a way to have iDVD have accommodate more than one iMovie project on one DVD?

    Looking for a way to have more than one iMovie Project burned to one DVD through iDVD.  Any assistance is greatly appreciated.

    Hi
    YES - But do not use "Share to iDVD" in any version of iMovie as this will degrade the final result - BUT
    Share to Media Browser - and as Large (Not HD or other resolutions as this too degrades the final DVD)
    Now when Your movies are Shared. Close iMovie
    Open iDVD and import movies from Media button/Movies (down to the right)
    And You can add up to 99 movies - or 60/120 minutes (reg encoding quality chosen)
    Time is = Movie duration + MENU DURATION (can take 15 minutes or more if elaborated)
    (I keep it as simple possibly)
    Yours Bengt W

  • Is there a way to Search (List search) for more then one field text from a column for Bulk uploading?

    I've been trying to find more information on this and I apologies if this has already been answered. I just don't know the correct way to ask this. We have a SharePoint List at the company that we have people input information into different columns. The
    problem is most of those information are very repetitive. Is there a way for me to search more then one field text in the column and just input that same information in?
    ex:
    Column 1
    Column 2
    Date:
    883851
    MidWest
    User input 
    8831518
    MidWest
    User input
    On the search field in the SharePoint List, I would need to search for 883851, 8831518 etc,  would view those requested numbers, then I would click edit and change dates to those rows. Does that make sense? I'm sorry I'm fairly new at sharepoint.

    I think what you're asking is about having repetitive options in a list, show up easily for new items being created.
    This can be done by setting the columns that contain repetitive information to Choice fields.  In the configuration of the Choice field, check the box for "Allow custom values".  Now as users are entering data into the list, the dropdown of options
    for a given field grows and users can quickly see and select previously entered and thus repetitive values for the given fields.
    I trust that answers your question...
    Thanks
    C
    |
    RSS |
    http://crayveon.com/blog |
    SharePoint Scripts | Twitter |
    Google+ | LinkedIn |
    Facebook | Quix Utilities for SharePoint

  • Is there a way I can sync and keep more than one iPhoto library from my MacBook on my iPad2?

    Hi, I have several iphoto Libraries on my MacBook - as it's a good way to organize all my photos and keeps them in manageable form - but I would like to keep them on my ipad2 aswell.  In the normal way I can only sync one Library at a time - unless someone knows better!
    Many thanks and hope you can help.

    found solution...i've now got iphone sync'd between new IMac and macbook pro (meaning that I can now add songs, video, from both computers...i don't know about all that sync of contacts and mail, etc...not concerned with that at moment..)
    follow solutions here:....http://www.iskysoft.com/topic-iphone/sync-iphone-with-multiple-macs.html. NOTE: as mentioned in my previous post, I was unable to change my Library Persistent ID, as it would always revert back to the original....however, in the link above, one user, made suggestion to corrupot Itunes Library.itl, and then it will repair itself with Library Persistent ID (of old/original machine), and now it works..!

  • Is there a way to type the genre into more than 1 song at a time?

    I have a list of songs and they are all the same genre.  is there anyway to select all and type the genre once and have it fill in all selected?

    Hold down command key to select multiple songs, then "Get Info", and you will modify all fields at the same time.

  • There is a way to use the button enhance for more than one photo at a time?

    I have more than a thousand photos to edit,  this can help a lot.

    This might help:
    http://www.feroxsoft.com/ibe/index.php.en
    Regards
    TD

  • Is there a way to erase contents in cells more than one, without deleting the formatted background?

    When using Numbers on iPad (Numbers '09, v2.3 on iPad, iOS v6.1.3), I want to erase contents in an area with more than 1 cell, e.g. 10 cells, without erasing/deleting the formatted background colour.
    Using a right click on cells using Numbers on a Mac (Mac, OS X v10.8.4) you can differentiate between "delete content of cell" (where the background is maintained) and "delete all" (where both the content AND the background is deleted).
    Please, I need help.
    Kindly,
    Henning154

    Just select the cells you want to delete and hit the delete button.
    That works on my machine (Macbook Pro).
    The background remains unchanged.

  • Is there a way to delete more than one layer at a time?

    As you would with regular files. I can't seem to highlight more than one layer at a time. I also tried linking the layers to be deleted but that didn't work either. Am I trying to do the impossible?

    Try;
    V+backspace then enter.
    On photoshop elements 1,2 and 3 this deletes only
    the layer that is selected, not the layers linked to it.
    On photoshop elements 4,5,6,7 and 8 this deletes the
    selected layer or layers.
    MTSTUNER

  • Is there a way to delete more than one photo at a time in the Photo application?

    Is there a way to delete more than one photo at a time in the application Photos in the iPad? Thanks.

    The links below have instructions for deleting photos.
    iOS and iPod: Syncing photos using iTunes
    http://support.apple.com/kb/HT4236
    iPad Tip: How to Delete Photos from Your iPad in the Photos App
    http://ipadacademy.com/2011/08/ipad-tip-how-to-delete-photos-from-your-ipad-in-t he-photos-app
    Another Way to Quickly Delete Photos from Your iPad (Mac Only)
    http://ipadacademy.com/2011/09/another-way-to-quickly-delete-photos-from-your-ip ad-mac-only
    How to Delete Photos from iPad
    http://www.wondershare.com/apple-idevice/how-to-delete-photos-from-ipad.html
    How to: Batch Delete Photos on the iPad
    http://www.lifeisaprayer.com/blog/2010/how-batch-delete-photos-ipad
    (With iOS 5.1, use 2 fingers)
    How to Delete Photos from iCloud’s Photo Stream
    http://www.cultofmac.com/124235/how-to-delete-photos-from-iclouds-photo-stream/
     Cheers, Tom

  • Is there a way to relocate more than one song at a time?

    Half my library can't be located and have those ! marks next to them. Is there a way to relocate more than one song at a time?

    Maybe some more help here:
    http://discussions.apple.com/thread.jspa?messageID=7885138&#7885138

  • Is there a way to "red eye" more than one photo at a time?

    Is there a way to "red eye" more than one photo at a time?

    No. 
    OT

Maybe you are looking for