Layer mask does not properly clear?

something is wrong w my layer mask. I maybe had clicked on something while doing some graphic but I'm pretty sure.

When clear it was beautiful,

exbhtA.jpg

the problem is when I want to recover the pieces that I deleted. It becomes translucent (or less opacity) rather than its original T ^ T

If someone knows how to fix this please tell me! I use layer mask forever and I always use it, this isn't the same without it working properly T ^ T

exbhtb.jpgexbhtc.jpg

My first idea, see these differences: black and gray?

Have you applied with a gray brush and the other with a black brush?

Tags: Photoshop

Similar Questions

  • Layer mask does not work correctly.

    My normal layer mask does not work correctly.  When I click on add a layer mask, I get this instead.  I change a setting by chance?  He won't let me see where my traditional black and white mask.

    Screen Shot 2015-11-16 at 2.20.47 PM copy.png

    Hello

    In the layers panel, click the dropdown menu, click on Options in the Panel and select one thumbnail size other than None.

  • Paste an image into a layer mask does not work even after several approaches

    I can't paste an image into a layer mask. I tried to keep 'option' by clicking on the layer mask (to activate the white), then "Control + V" to paste the image but it still places the image in a new layer. I tried to paste through the Palette layers without success (pasta in a new layer). I tried to use past special from the Edit menu, but the past command is grayed out. Any ideas for why it does not work for me?

    I tried to keep 'option' by clicking on the layer mask (to activate the white), then "Control + V" to paste the image

    Did you select > all and edit > copy the image you want to put in the mask?

  • CC 2015 Photoshop layer mask does not?

    I've recently updated to CC in Photoshop, but I have problems with layer masks, I created the mask layer, and when I paint with my black brush, it does not block the area completely, it will leave the remains of the image essentially, it leaves an opaque shape. I check that my brush is set to normal and my layer is set to normal. I have reset the brushes, I tried implementing new photoshop documents, but it makes no difference. Can anyone help please see the example below, the Red is a layer below the layer of the image that has applied the layer mask.

    Screen Shot 2015-08-23 at 20.56.32.png

    Reset preferences: opt-cmd-shift at the start of the PS.

  • White color on the layer mask does not

    Well, I have a problem... Each setting is fine, but when I open the layer mask on a layer, and if I have the black brush, it works very well, BUT if I brush white, it does not work. It's like the color white is on 0% opacity. It shows me an action in "history, but it's like I'm not even brushing."
    Now, when I want white brush, I switched layer mask, brush black and then I reverse again, because as I said, the white color just doesn't work...
    -Colours btw, work not in a layer mask

    Is the Mode in the Options bar to brush on something other than normal?

  • Layer mask works not properly on CS5

    Hello world

    I had this problem for a few days and still have not found a solution.


    Here's what happens: my layer mask has suddenly stopped working properly. Even if all properties are set to the right, the result of mask is sort of bland bland of the thing.


    wut.jpg

    No one knows what might happen?

    Thanks to you all.

    Have you done that in striking D and X?

    As CS5 already has the properties panel where you can change the density of a layer mask?

  • Layer mask does not

    Everything is set to normal and the brush is set on what it is supposed to. I changed nothing, but I did accidentally hold shift and alt and right-click on the photo. After that, I couldn't have the under layer. I even restarted Photoshop and it still does not work.

    I got it to work. The color has been reversed. You can close this thread. Thank you

  • Listener code to add a layer mask does not work...

    With the help of Photoshop CC 2014 with all updates. The following script listener code has been saved when I clicked on the button, add a layer mask to add a mask to the active layer. When executeAction is called the script fails with the following error message. Help! How can I add a layer mask to the layer? Thank you.

    : Error General Photoshop. Maybe this feature is not available in this version of Photoshop. -The command 'Make' is not currently available.

    function addLayerMask() {}

    Adds a layer mask to the layer by clicking on the

    Add the button layer mask.

    var idMk = charIDToTypeID ("Mk");

    var desc23 = new ActionDescriptor();

    var idNw = charIDToTypeID ('Nw');

    var idChnl = charIDToTypeID ('channel');

    desc23.putClass (idNw, idChnl);

    var idAt = charIDToTypeID ('At');

    var ref20 = new ActionReference();

    var idChnl = charIDToTypeID ('channel');

    var idChnl = charIDToTypeID ('channel');

    var idMsk = charIDToTypeID ("Msk");

    ref20.putEnumerated (idChnl, idChnl, idMsk);

    desc23.putReference (idAt, ref20);

    var idUsng = charIDToTypeID ("Usng");

    var idUsrM = charIDToTypeID ("rocket");

    var idRvlS = charIDToTypeID ("LVR");

    desc23.putEnumerated (idUsng, idUsrM, idRvlS);

    executeAction (idMk, desc23, DialogModes.NO);

    }

    This code works if you have an active selection.

    function addLayerMask() {}

    Adds a layer mask to the layer by clicking on the

    Add the button layer mask.

    var idMk = charIDToTypeID ("Mk");

    var desc23 = new ActionDescriptor();

    var idNw = charIDToTypeID ('Nw');

    var idChnl = charIDToTypeID ('channel');

    desc23.putClass (idNw, idChnl);

    var idAt = charIDToTypeID ('At');

    var ref20 = new ActionReference();

    var idChnl = charIDToTypeID ('channel');

    var idChnl = charIDToTypeID ('channel');

    var idMsk = charIDToTypeID ("Msk");

    ref20.putEnumerated (idChnl, idChnl, idMsk);

    desc23.putReference (idAt, ref20);

    var idUsng = charIDToTypeID ("Usng");

    var idUsrM = charIDToTypeID ("rocket");

    var idRvlS = charIDToTypeID ("LVR");

    desc23.putEnumerated (idUsng, idUsrM, idRvlS);      reveal selection

    executeAction (idMk, desc23, DialogModes.NO);

    }

    app.activeDocument.selection.selectAll ();

    addLayerMask();

    To add a layer mask without an active selection is the scriptlistener code you would need

    function addLayerMask() {}

    var idMk = charIDToTypeID ("Mk");

    var desc25 = new ActionDescriptor();

    var idNw = charIDToTypeID ('Nw');

    var idChnl = charIDToTypeID ('channel');

    desc25.putClass (idNw, idChnl);

    var idAt = charIDToTypeID ('At');

    ref19 var = new ActionReference();

    var idChnl = charIDToTypeID ('channel');

    var idChnl = charIDToTypeID ('channel');

    var idMsk = charIDToTypeID ("Msk");

    ref19.putEnumerated (idChnl, idChnl, idMsk);

    desc25.putReference (idAt, ref19);

    var idUsng = charIDToTypeID ("Usng");

    var idUsrM = charIDToTypeID ("rocket");

    var idRvlA = charIDToTypeID ("RvlA");

    desc25.putEnumerated (idUsng, idUsrM, idRvlA);  reveal all

    executeAction (idMk, desc25, DialogModes.NO);

    }

    addLayerMask()

    There are once again hide all

    var idMk = charIDToTypeID ("Mk");

    var desc33 = new ActionDescriptor();

    var idNw = charIDToTypeID ('Nw');

    var idChnl = charIDToTypeID ('channel');

    desc33.putClass (idNw, idChnl);

    var idAt = charIDToTypeID ('At');

    var ref27 = new ActionReference();

    var idChnl = charIDToTypeID ('channel');

    var idChnl = charIDToTypeID ('channel');

    var idMsk = charIDToTypeID ("Msk");

    ref27.putEnumerated (idChnl, idChnl, idMsk);

    desc33.putReference (idAt, ref27);

    var idUsng = charIDToTypeID ("Usng");

    var idUsrM = charIDToTypeID ("rocket");

    var idHdAl = charIDToTypeID ("HdAl");

    desc33.putEnumerated (idUsng, idUsrM, idHdAl);     Hide all

    executeAction (idMk, desc33, DialogModes.NO);

  • Paint on layer masks does not work?

    Hi, I'm working on a work of Digital Art classes... Deadline tomorrow, I left it quite late because I knew what to do, and he was out in my head on how to do it. And behold, I encountered a problem with paint on a layer mask.

    I did a form (Magenta, so I know I paint on the correct layer) and have selected layer mask, but when I try to paint black on it to give it a bit of shading is as if she is wiping out so I can see the layer behind it, even though I see that it is indeed drawing anywhere in the mask layer in the layers panel anyway?

    Until something happens, I'll just go try and find an alternative

    (Photoshop CS6)

    Screenshot 2014-03-19 20.58.06.pngScreenshot 2014-03-19 20.57.44.png

    Any help is appreciated!

    Painting on the layer mask with black going to 'clear' of the image.  That's the whole point of a layer mask.  If you want to shade it (non-distructively) then create a new layer above that layer and hang it on her, pressing alt/opt clicking on between the layers in the layer panel.  Then you can paint black on the new layer, and it will be displayed only when the lower layer's pixels.  You can then change it without messing up the base layer.

  • I have someone using PSCS4, and when she creates a pattern fill layer, it does not get a mask.

    I have someone using PSCS4, and when she creates a pattern fill layer, it does not get a mask.

    Any ideas on how it could have turned off and how we can re-enable default?

    I check its settings panel menu and "Add default mask" is checked.

    Thank you!

    She changed the Layer palette settings to not automatically create a mask with layers of filling.

    Is not an adjustment layer, so the adjustment layer setting does not apply (and two parameters should really be in the layers palette in order to reduce the confusion).

  • How can I get my layer mask to work properly

    I have Photoshop CS6 64 bit I duplicated the layer and applied a Gaussian blur.  I created a layer mask and when I brush the layer it does not reveal the mask - how can I fix it? Layer mask

    It is difficult to tell with what you see. But reveal is black and white is hide, with gray as the variance of the two. He would not reveal the mask, he would reveal the lower layers. I guess that what you mean, but I added it for new users of reading this thread.

  • Safari Web Clip does not properly

    Hello everyone

    I have a problem with safari Web Clip and that is does not properly for almost all pages, as example, I participate in a contest of therapy dbrand/unbox, and I really don't want to open the web page, whenever a new winner is announced, so I created a web clip, but it does not work well When I click the web clip icon he asked the location of the clip and when click on done, the web clip is from a different region and I can't fix.

    Is this some sort of bug or can I fix it myself?

    Web Clip still didn't work if the cut element remains in the exact same on exactly the same site. This is apparently not the case here.

    Dashboard widgets in general, are an old technology that has not been updated in many years.

  • Toshiba 47L7453DG - CEC does not properly using exernal amplifier

    I bought Toshiba 47L 7453 a few days ago.

    It is connected to the amplifier Onkyo TX-NR535 but CEC does not properly. Volume control works fine but On / Off or stanby does not at all.

    My previous TV Toshiba 42XV635DG was communicated by the CEC with the Onkyo even without any problem.

    The wire connection is HDMI 1.4 certified.
    Maybe the problem is with the firmware of the TV.

    Maybe someone had the same problem.

    Any suggestion?

    Thank you

    Hello

    From my point of few TV and amplifier are connected some CEC (Volume control) functions that work. I think you should check the auto power settings and HDMI CEC standby control system.

    Manual, you will find some important notes:
    http://www.Toshiba-OM.NET/LCD/PDF/English/L7453-424755-English.PDF

    _Page: 11_
    + You can control the basic functions of audio/video devices connected with s TV remote if you connect an HDMI-CEC compatible AV amplifier or playback device. +
    + If several devices are connected, the HDMI CEC control function may not work correctly. +

    _Page: 86 - 87_
    + When the point to activate the HDMI CEC control in the menu of HDMI CEC control configuration is defined on.
    + On, also allocated to individual features will be activated. +
    + When the connected equipment work, HDMI CEC control automatically detects the TV input selection. If the TV is in standby mode, it will be automatically reactivated. +
    + If the TV is off (standby), television will send a message turns off (standby) all devices HDMI CEC control connected to the TV. +

  • EQUIUM A60: graphic ATI does not properly

    I HAVE AN EQUIUM A60 1 YEAR MESSAGE SUDDENLY CRASH SAID: ATI GRAPHICS CARD DOES NOT PROPERLY.
    CAN'T FIND THE DRIVERS UPDATED ON ATI OR MICROSOFT HELP PLEASE?

    Hello

    Can you tell me when this message appears?
    First of all, you can try to update the graphics driver from Toshiba. It is a first step that you can try.
    Check this page for the driver download.
    http://EU.computers.Toshiba-Europe.com/cgi-bin/ToshibaCSG/download_drivers_bios.jsp

    Good bye

  • Error message: Shockwave, Flash Player does not properly during playback Slotomania

    Original title: shockwave flash player

    Hi I have problems with some games. Especially slotomania. When I enter the RM of slotomania that flashing message saying that Flash shockwave Player does not properly can give to interrupt or stop options taken but its gone too fast for me to do something. Then the really slow game. Can you help me?

    Hello Marilyn,.

    Thanks for posting your query in the Microsoft Community Forum.

    According the information, you are facing problems to play games online as Slotomania due to the Adobe Shockwave, Flash Player error messages.

    It would be useful that you can answer these questions to help you further.

    1. are you facing problems that when you play online game Slotomania?

    2. using Internet Explorer or another web browser?

    3. what version of the Windows operating system is installed on your computer?

    4. have you made a recent software or hardware changes to the system?

    If you use Internet Explorer, you can see the article and check if it helps to solve the problem.

    The problems of games online using Internet Explorer

    It will be useful.

    Let us know if you need help with Windows related issues. We will be happy to help you.

Maybe you are looking for

  • How can I, me, my, region, preferences changed, UK, custom, to, Australia

    On my iMac my preferences of region refuse to depart from United Kingdom (standard) in Australia. How can I change this? With the identification of two factors, he thinks also is at Wembley WA and it's actually in Sydney NSW. Clues as to how I can fi

  • G3 ability

    Hello I am a beginner in the Arduino / UNO R3. I am looking to download Python and probably programs / associate of Raspberry Pi. Would an Apple G3 / 400 installed OSX4.11 Tiger, as well as OS9.22 running in dual boot or in "classic" mode, these supp

  • Names not displaying tab does not

    Since the last update for Firefox (unfortunately I don't remember what version I have updated since) the tabs no longer display their names except for the one that is selected. They show just a blank tab with the thumbnail image. However, if the fire

  • In Firefox Sync, Firefox Home - What does the option "Use Safari" in the application actually settings?

    In the global settings on the iPad page, (that's where users can configure parameters for each app) there is an option to Firefox Home for "use of Safari. What this setting actually do or not do?

  • Is SM30 good description for Satellite M30 model?

    Hello I bought a Toshiba laptop in Italy three years ago.It is said in the back of my laptop, TOSHIBA SATELLITE SM30-742. PSM30E-7100V-IT.I thought that my model was M30 742 as SM30-742 does not appear in the sites of Toshiba. How can I determine exa