Am I Missing Something Obvious? Layer Mask Not Confined to Selection.

Hello, I really hope I am not missing anything obvious.
I am working on a .psd in Photoshop CC in which I used a selection to precisely remove a portion of a layer in a layer mask. The problem is that it is removing a percentage of the opacity in the non selected area. The brush has 100% Opacity, 100% Flow and is in Normal Mode. The layer has 100% Opacity, 100% Fill, and is in Normal Mode. I have tried restarting Photoshop and starting over from scratch. Here is an image of the issue.
My only other concern is that on Friday we had a power outage due to lightning and PS CC closed unexpectedly. Could my PS CC be corrupted? My computer has restarted since then. Any suggestions would be wonderful. Thanks!

The power outage should not have corrupted your Photoshop to cause this to happen. Worst that could have happened is Photoshop was forced to quit and your preferences did not get save for yourt panel layout and prefertence settings.
Is your brush filled with 100 black, the swatch looks dark but you may be at 90% black.? Your screenshot looks fine though as if the mask is working correctly, can you post a screenshot that better shwos the problem.

Similar Messages

  • I updated to lion and now don't have a minimize button in the new emails i am writing.  Do i really have to save it as a draft to be able to have multiple emails in progress?  Or am I missing something obvious?!

    I updated to lion and now don't have a minimize button in the new emails i am writing.  Do i really have to save it as a draft to be able to have multiple emails in progress?  Or am I missing something obvious?!

    Photoshop Elements is not part of the Cloud, I will move this to that forum
    Photoshop Elements Forum http://forums.adobe.com/community/photoshop_elements
    Redemption Code http://helpx.adobe.com/x-productkb/global/redemption-code-help.html
    -and https://forums.adobe.com/thread/1572504
    Lost serial # http://helpx.adobe.com/x-productkb/global/find-serial-number.html
    Select a topic, then click I STILL NEED HELP to activate Photoshop Elements Online chat
    -http://helpx.adobe.com/contact.html?product=photoshop-elements or
    http://helpx.adobe.com/photoshop-elements/kb/troubleshoot-installation-photoshop-elements- premiere.html

  • Upsert of xmltype from given xpath - missing something obvious?

    Version: 10.2.0.*2* EE
    I am trying to do an upsert (update/ insert ) of an xmltype for a given xpath.
    The xml data is being passed as an xmltype, the xpath is a string (varchar2), the new value is a string, varchar2.
    If the node specified by the xpath exists this is trivial using updatexml; of course if the node doesn't exist nothing happens. I can check for the nodes existence using exists node, but I'm coming unstuck trying to figure out how to insert the node.
    All the APIS I can find that insert XML (APPENDCHILDXML,INSERTXMLBEFORE, INSERTCHILDXML) do not take an xpath but require an xmltype. Which means if I am reading this right I have no choice but to parse the xpath varchar2 string to try and construct an xmltype (ugh!).
    I can't find any API that just takes an xpath as a varchar2 and a value and gives me an xmltype. Ideally I don't even want that, would just like an API that returns the updated XML which has either had the xpath updated (or inserted if it didn't exist) with the new value.
    I am not an XML expert but I am pretty handy with SQL and PL/SQL. To me this just seems incredibly cumbersome just to do something as trivial as an upsert, so I am hoping I am missing something obvious!
    Can soemone please set me straight with a pointer or example?
    To top it all off the XML uses namespaces, but they aren't registered, there is no schema registration going on.

    Marco Gralike wrote:
    Couldn't it be done via XQuery, although the database version doesn't really help...That would be possible with a dynamic XQuery expression, but "painful" with a static expression as it would require parsing the XPath, and rebuilding the entire input document with the required modifications.
    I think XSLT would be more efficient in this case.
    Maybe, one day, when the database has XQuery Update Facility, we will be able to do this :
    copy $a := $doc/Address
    modify (
      if ($a/zip)
        then replace value of node $a/zip with "12345"
        else insert node element zip {"12345"} into $a
    return $a
    user12083137 wrote:To me, from a SQL background, I can't believe this simple case is simply not covered.Maybe not as simple as it seems. :)
    The functionality can be simulated via an IF/THEN/ELSE logic, or a DELETE/INSERT sequence.
    For example :
    case when existsNode(doc, xpath) = 1
      then updateXML(
             doc
           , xpath || '/text()'
           , somevalue
      else appendchildxml(
             doc
           , substr(xpath, 1, instr(xpath, '/', -1)-1)
           , xmlelement(
               evalname(substr(xpath, instr(xpath, '/', -1)+1))
             , somevalue
    endor,
    appendChildXML(
      deleteXML(doc, xpath)
    , substr(xpath, 1, instr(xpath, '/', -1)-1)
    , xmlelement(
        evalname(substr(xpath, instr(xpath, '/', -1)+1))
      , somevalue
    )

  • RMIC & Netbeans - am I missing something obvious?

    I finally managed to get rmic to compile something without errors, but I can't find any additional files I thought it would create. I added the following to build.xml in my server application:
    <target name="-post-compile">
    <!-- Empty placeholder for easier customization. -->
    <!-- You can override this target in the ../build.xml file. -->
    <echo message="Running rmic ..."/>
    <rmic base="${build.classes.dir}" includes="**/*Impl.java;${build.classes.dir}"/>
    </target>
    And I see this in the compiler output:
    Running rmic ...
    But nothing. Did I miss something obvious? I'm using Netbeans Beta 6.
    Thanks

    Ok, so I read some more recent tutorials (teaches me for reading an old book!) and I have some success. Except:
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
    java.rmi.UnmarshalException: error unmarshalling arguments; nested exception is:
    java.lang.ClassNotFoundException: StudioWorks.security.SecurityResponder
    at sun.rmi.server.UnicastServerRef.oldDispatch(Unknown Source)
    at sun.rmi.server.UnicastServerRef.dispatch(Unknown Source)
    at sun.rmi.transport.Transport$1.run(Unknown Source)
    Obviously there are two issues;
    1) Can't find the remote object's class
    2) The remove object isn't serializable? Odd, as it extends Remote. I thought that was enough based on what I'm reading
    Maybe it's a simple mistake of not providing the right parameters/classpath to the rmiregistry, which I'm running from the command line and not through Netbeans (don't know how to do that).
    Back to the reading! :)
    Edited by: BobCrivens on Oct 14, 2007 8:32 PM

  • Error in XML parsing. Im i missing something obvious.

    I am new to XML and i cant seem to be able to iterate through the xml response.
    Here is the relevant code
         QName qName = new QName( "http://www.ros.ie/schemas/customs/collectresponse/v1", "MailboxCollectResponse" );
                              //create the parser
                              XMLStreamReader parser = response.getPullParser(qName);                 
                              StAXOMBuilder builder = new StAXOMBuilder(parser);
                              OMElement documentElement = builder.getDocumentElement();
                              //dump the out put to console with caching
                              System.out.println(documentElement.toStringWithConsume());                             
                              //QName elementQName = new QName("http://www.ros.ie/schemas/customs/collectresponse/v1","MailboxItem");
                              QName elementQName = new QName("http://www.ros.ie/schemas/customs/collectresponse/v1","MailboxItemList");
                              Iterator infoIter =
                                  documentElement.getChildrenWithName(elementQName);
                                  while (infoIter.hasNext()) {
                                      OMElement element = (OMElement) infoIter.next();
                                      System.out.println("Matching Element Name = " +
                                          element.getFirstElement().getText());
                                      }  The println statement is producing this output which i think is correct.
    <MailboxItemList xmlns="http://www.ros.ie/schemas/customs/collectresponse/v1" moremessages="false" messagecount="2"><MailboxItem xmlns="http://www.ros.ie/schemas/customs/collectresponse/v1"><ns2:IEMailboxId xmlns:ns2="http://www.ros.ie/schemas/customs/customstypes/v1">Mailboxid123</ns2:IEMailboxId><ns2:IETransactionId xmlns:ns2="http://www.ros.ie/schemas/customs/customstypes/v1">Transaction123</ns2:IETransactionId><Message xmlns="http://www.ros.ie/schemas/customs/collectresponse/v1"><x:root xmlns:x="bar" xmlns:y="bar1"><x:foo xmlns:x="bar"><y:yuck xmlns:y="bar1">blah</y:yuck></x:foo></x:root></Message>But when it gets to the Iterator an exception is raised.
    org.apache.axiom.om.OMException: Parser has already reached end of the document. No siblings found
         at org.apache.axiom.om.impl.llom.OMElementImpl.getNextOMSibling(OMElementImpl.java:267)
         at org.apache.axiom.om.impl.traverse.OMChildrenQNameIterator.hasNext(OMChildrenQNameIterator.java:69)
         at com.alp.ccs21.soapwg.msgcollect.FrDHLCli.collectMsgs(FrDHLCli.java:281)
         at com.alp.ccs21.soapwg.msgcollect.FrDHLCli.run(FrDHLCli.java:203)Im i missing something obvious here?
    Thanks in advance.

    Edited by: ziggy on Jul 31, 2010 4:48 PM

  • I synched iPhone and PC but can't locate any of library on iPhone - am i missing something obvious ?

    i synched iPhone and Pc but can't locate any of library on IPhone - am I missing something obvious ?

    What did you select to sync?
    It will only sync what you tell it to sync.
    iPhone User Guide (For iOS 4.2 and 4.3 Software)

  • Adding an application component - missing something obvious

    Hi,
    We just upgraded to portal (running server and portal on windows nt) and I am developing. We have reports already completed in reports 6i. However, I am having trouble adding them to the pages or even in the "other providers" listed in portlet repository. The report is connected, as when I click on "edit" and then "run," it runs. I just don't know what I need to do so that the report shows in the "application component" when I click on "add item."
    I am sure that I am missing something obvious. Any help would be greatly appreciated.
    Thanks,
    Lindsay

    Thanks anyway, I figured it out. :-)

  • Am I missing something OBVIOUS

    Is it just me or am I missing something OBVIOUS
    I simply find it ALMOST IMPOSSIBLE to report a BROADBAND fault using E_MAIL
    I seem to be going round in circles .....................and the HELP SOLUTIONS ..... DON'T
    Yours   ING D M Logan
    Ing D M Logan Retired ACADEMIC Structural Engineer

    Hi Westerwood_Community and welcome
    If you select 'Broadband' at the top of any forum page, then click on 'Contact us about Broadband' , select 'BT Broadband', select the section you need (in your case 'I have problems connecting to broadband'), you can then email BT from there.
    The direct link to contact BT is - http://bt.custhelp.com/app/contact/c/346,401,1847
    Hope this helps
    edit. Or simply use the link Keith provided
    -+-No longer a forum member-+-

  • I must be missing something! I do not see Adobe Encore listed to download...

    I must be missing something! I do not see Adobe Encore listed to download...need help soon....

    Actually, it was already on my computer. Must have come with Premiere. Silly me...

  • New battery will not charge - have we missed something obvious?

    My DD has just replaced the battery on her PB. When the power supply (less than 3 months old) is attached, the led shows amber but the battery will not charge. I've tried reseating the battery with no effect. Since I purchased it from an apple dealer, I'll be taking it back tomorrow, but I wondered whether there is something obvious we've missed.
    Thanks
    Jennifer

    Thank you both. Yes I know the battery needs to be calibrated, but as you say, to calibrate, you need to charge, which is a non-starter. I'm going to take the whole thing in (again). I suspect the problem that led to the battery needing to be replaced possibly dealt a death blow to something inside. I don't know whether this is relevant, but before replacing the battery, the charger started to make a loud buzzing noise (I understand - I wasn't here), and with the old battery in place the PB kept freezing and/or rebooting. Only with the battery out and just the power supply in would the PB work. The PB is seeing the new battery, it just wont charge it. I just wanted to make sure there wasn't anything else I could do before taking it in.
    Jennifer

  • CS5 Layer Mask not working. Hide all not hiding

    I need some help here. CS5 on win 7 64 bit. Duplicate layer and apply a layer mask (alt click) and it does not hide the layer. Just applying a mask and painting with black also does not hide. If I hide the background layer then the mask appears as the white and grey checkerboard pattern, no solid color. Am I missing something simple?
    Thanks, Dave

    The checkerboard indicates places where your entire document is transparent through and through.
    I suspect your mask is working as it's supposed to, and that when the background layer is visible you're just seeing through to the duplicate layer below - which by definition will not look any different on your display.
    Try this:
    Add a brightly colored solid color fill layer just below the layer you're masking.  Now see what the mask does to the upper layer.
    -Noel

  • Layer Mask not revealing the right colors

    Hi I am new to Photoshop CS6, and photoshop in general. I am trying to take a color photograph, turn it to black and white, and reveal a flower in color and the rest is still black and white.
    I thought I had done this properly when I added a new "adjustment layer, hue/saturation", reduced saturization to zero, and painted the yellow flower over with black to reveal the yellow flower's color while the rest of the photo is still black and white. And it worked..except when I got to the green stem of the flower. Painting over that with black revealed a yellowish-green stem.
    I experimented a little more by painting black on the new layer mask and most of the rest of the color photo comes out wrong. The blue sky shows up like a weird smurf blue, faces are oddly peach/orange and most colors look much different than the originial photo. Yellow seems to be not affected, magenta/pink seems to be OK and blue shows up so-so. But the rest of the colors are messed up.
    I know this must be something very basic, but why are the colors showing up odd?
    Thanks

    Sounds like you did the right stuff.  You should expect to see the colors revealed where the mask is made black.  I might have used a Black & White adjustment layer rather than Hue/Saturation, as that would give you more control over the grayscale part of the result, but the technique with the mask should be  the same.
    Any chance you could take a snapshot of your screen, save as a JPEG, and paste it here?  That will help avoid a whole lot of questions.
    I noticed your screen name...  I live in "bokeh".    The weather has turned nice down here after Sandy passed by, eh?
    -Noel

  • I am certain I am missing something obvious....

    In Safari 4.0.5, I tried to clean up and organize my gigantic number of bookmarks. I probably did something wrong. I created folders for common bookmarks, like "politics," "shopping," "sports," "diet & exercise," etc. Then I put the bookmarks into the correctly corresponding folders and deleted many bookmarks I no longer use. Now, if I am in Safari, and go to Bookmarks, I do not see the big list of bookmarks -- nor do I see the organized folders in which I place all of my Bookmarks. I can make them appear -- open all in Tabs. That's no good. Or I can use the Bookmark pull-down menu, and choose "Show all Bookmarks." That's not the organizational system I thought I was creating. Is there a way to get my Bookmarked Folders to show up in the main Bookmark Bar? I know I am either missing something very obvious OR I did my organizing in the wrong way. Any help or advice out there? Thanks anyone in advance.

    Nevermind. I just figured it out. I was being very stupid! It was obvious.

  • I'm sure I'm missing something obvious! Copy and paste cells.

    I have a table in numbers, and wish to copy and paste some of the values (C1 to C14591), but when I select the cells I wish to copy and then choose paste in any other application (tried Textedit, Eddie, Nano etc. etc.) nothing appears. The only way I've found to copy and paste the contents of individual cells is to do them one-by-one, which will take a huge amount of time.
    I'm sure there's something obvious I've missed but as yet haven't found it!
    Please help if you know how to do this.
    Thanks.

    Hello
    The main point is that Numbers was not designed for such a huge table.
    It was designed for datas organized in smaller tables.
    In a Numbers document, everything is described in an XML file using a really verbose format.
    So, the XML file embedded in the Numbers package will be huge.
    Just a sample.
    I have scanned the internals of a Document containing one Sheet containing one table containing 180 cells
    It is made of:
    442,432 bytes for the header describing the Sheet and the table.
    41,871 bytes describing the contents of the 180 cells (230 bytes per cell).
    230,895 bytes whose contents is, at this time terrae incognita (for me)
    So I leave you as an exercise the calculations giving a rough value of the size of your future document.
    Good luck
    Yvan KOENIG (from FRANCE mardi 22 janvier 2008 21:44:10)

  • Alt + click on layer mask not working/enabled

    Im wondering if anyone else has come across this problem and managed to solve the issue!
    Basically, when I go to view the layer mask by holding alt and clicking on the layer mask it doesn't function. Along with this problem, when I go to toggle my adjustment layers on and off, by holding alt and clicking on the eye symbol next to the background layer... again this doesn't work.
    Im not sure if I have accidently clicked on something that has disabled these functions or its just a bug.
    Please, can anyone help with this?
    Thanks
    Dave

    Yeah I tried both Alt keys, that wasn't the problem. I could use both Alt keys to do shortcuts and they worked, just didn't work when it came to toggling off and on the adjustment layers and also viewing my mask, when Alt clicking on it.
    I even tried opening the file in an older version of photoshop and still had the same problem.
    I was about to re-install the program or reset it back to its default settings... then decided to do a selection of the image, cut it out and pasted it into a new document and then dragged my adjusment layers over to the new file. Hey presto! the functions worked.
    Think it was just a case of the image or file in general becoming corrupt or just having some sort of bug.

Maybe you are looking for

  • How to make Page View Mode user dependent?

    Greetings! In our company there are a few developers working with Apex. Now some prefer the new "Tree View"-view on the page layout, I prefer the old "Component View" and often each one has to switch back to his own setting, because someone else chan

  • Is a fix for "not compatible HP Smart Web Printing 4.60, coming? Do you have a browser that will work with it?

    Brand new wireless network printer from hp uses HP web printing 4.60. So I can't use my new printer. If you have a different browser that will work great, I hate to switch to a non mozilla browser. == This happened == Every time Firefox opened

  • Toshiba Satellite L555-S7945 KEEPS FREEZING UP

    It's been happening lately. My Toshiba Satellite(windows 7 home permium 64 bits) has been freezing up with multiple, thin, multi-colored lines with a noise similar to when a sound track on a CD sticks or freezes and no mouse response or any kind of r

  • Cdr file preview in Bridge CS6

    Anyone knows why Bridge CS6 wont display larger previews of cdr files? The previous version I had (CS4) handled cdr files without  any problem. Thanks

  • Management Console Doesn't Display

    Hi Experts , we are facing issue with Management Console doesn't display after login ,none of the screens shows any user or activity data. Our DB admin went through the prerequisite list from note 1262933 and everything appears to be correct with the