Photoshop CS5 Quick Mask does not seem to be working

I'm having some issues with Qucik Mask.  I have the opacity set at 50%, go to the pain brush tool and when I go to mask, nothing. There are no areas  that have been selected, and where I'm working outside of them.
Any help would be appreciated.
Thanks

Steve,
Thanks!  That was it! Something I've never known in the 10+ years of operating Ps! (DUH!)

Similar Messages

  • "Item Help Subscription" does not seem to be working

    Hi All,
    I am on APEX 4.0.1. and trying to use the feature "Item Help Subscription" which does not seem to be working.
    Here is what I have done.
    -> Created a forms page (page 2) that has an item 'P2_NAME'. Define the "Help Text" for that item.
    -> Created another forms page (page 3) that has an item called 'P3_CUST_NAME'.
    -> In Page Definition for Page 3, Clicked on 'Edit All' icon under 'Items'
    -> Clicked 'Utilities' and selected 'Item Help Subscriptions'
    -> For Item 'P3_CUST_NAME', clicked on the LOV under 'Subscribe To' field and selected 'P2_NAME'
    However when I am clicking on 'Apply Changes' to save the changes, it is not getting saved. The 'Subscribe To' field appears blank even after applying changes.
    What I want to know is - is it a bug or have I missed something ? Is anyone using this feature successfully ?
    Any pointers or help will be highly appreciated.
    Thanks & Regards,
    Ashish Agarwal
    http://www.asagarwal.com

    Hi Ashish,
    I had created Item Help Subscription that you had mentioned.
    But I don't have any problem with this. It creates successfully.
    I am using Application Express 4.0.2.00.06
    Regards,
    Kartik Patel
    http://patelkartik.blogspot.com/
    http://apex.oracle.com/pls/apex/f?p=9904351712:1

  • My photo stream does not seem to be working as before with the new PHOTOS update. some of my devices are not getting the uploads/downloads

    My photo stream does not seem to be working as before with the new PHOTOS update. Some of my devices are not getting the uploads/downloads, anyone have this problem?

    Recommend that you post your question in "Photos".
    Remember, Photos is not a replacement for Aperture.

  • My operating system does not seem to be working

    My operating system does not seem to be working properly.  The system preferences cannot be accessed and itunes won't work either.
    My mac is OS X Version 10.4.11 so is quite old.

    Hello,
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    Let us know if that helps or not, or any other problems.

  • TS2634 ipad keyboard does not seem to be working.  I have recharged it ---what else should I do?

    My keyboard attachment to the ipad does not seem to be working.  It has been recharged.  Is there anything else I should be doing?

    When you plug in earphones, or anything in the audio output port, it should be reflected in SYSTEM PREFERENCES>SOUND.  If not, try a PRAM reset.
    http://support.apple.com/kb/HT1895
    Ciao.

  • HT1766 My touch screen does not seem to be working. The slide to unlock will not slide

    My touch screen does not seem to be working. I can not slide to open my phone or slide to turn off.

    You have tried restarting, right? Also, try holding the home and sleep/wake buttons together for at least 10 seconds, until the Apple logo appears. See if that helps. If it doesn't and you think this is a hardware problem, taking it into the Apple Store is your best bet.

  • %@ page import="..." % does not seem to be working correctly

    Hi,
              I am running Weblogic 6.1 sp1 and I am having a problem with import page
              directive. <%@ page import="my.package.*" %> does not appear to be working
              correctly when I try to reference classes in imported packages (my.package,
              etc.) from the useBean tag.
              The following code works with Resin, but not Weblogic:
              <%@ page import="my.package.*" %>
              <jsp:useBean id="errorBean" class="ErrorBean" scope="request"/>
              If, I take out the page directive, and change the useBean tag to:
              <jsp:useBean id="errorBean" class="my.package.ErrorBean"
              scope="request"/>
              then the page compiles and runs just fine.
              Michael
              

    Here's a snippet from Sun's j2ee tutorial
              (http://java.sun.com/j2ee/tutorial/1_3-fcs/doc/JSPBeans4.html):
              <jsp:useBean id="beanName"
              class="fully_qualified_classname" scope="scope"/>
              But I agree with you, the excerpt you posted seems to include the
              useBean tag, which is misleading.
              Nils
              Michael Hill wrote:
              >
              > I don't think this is the way it is "supposed" to be. Here is an excerpt
              > from the JSP Syntax reference on http://developer.java.sun.com
              > on the page directive:
              >
              > import= "{ package.class | package.* }, ..."
              > A comma-separated list of one or more packages that the JSP file should
              > import. The packages (and their classes) are available to scriptlets,
              > expressions, declarations, and tags within the JSP file. You must place the
              > import attribute before the tag that calls the imported class. If you want
              > to import more than one package, you can specify a comma-separated list
              > after import or you can use import more than once in a JSP file.
              >
              > ---
              >
              > It says the packages are available to tags within the JSP file as long as
              > you place the import before the tag that calls the imported class. In my
              > case, I am placing the import before the <jsp:useBean> tag.
              >
              > Michael
              >
              > "Nils Winkler" <[email protected]> wrote in message
              > news:[email protected]...
              > > I'm pretty sure that you have to specify the fully qualified class name
              > > in the useBean tag. import won't help you here.
              > >
              > > Nils
              > >
              > > Michael Hill wrote:
              > > >
              > > > Hi,
              > > >
              > > > I am running Weblogic 6.1 sp1 and I am having a problem with import page
              > > > directive. <%@ page import="my.package.*" %> does not appear to be
              > working
              > > > correctly when I try to reference classes in imported packages
              > (my.package,
              > > > etc.) from the useBean tag.
              > > >
              > > > The following code works with Resin, but not Weblogic:
              > > >
              > > > <%@ page import="my.package.*" %>
              > > > <jsp:useBean id="errorBean" class="ErrorBean" scope="request"/>
              > > >
              > > > If, I take out the page directive, and change the useBean tag to:
              > > >
              > > > <jsp:useBean id="errorBean" class="my.package.ErrorBean"
              > > > scope="request"/>
              > > >
              > > > then the page compiles and runs just fine.
              > > >
              > > > Michael
              > >
              > > --
              > > ============================
              > > [email protected]
              ============================
              [email protected]
              

  • Automated Backup Does Not Seem to be Working

    I tried to set up an automated backup on an Azure Web App. It's on the Standard Plan. It allowed me to configure it and after I did so I got a notification saying it was set up. And I see now that it has a status of "Created". But it does not seem
    to have moved any further -- and it has been about 15 minutes.
    I did successfully get a manual backup of the site to work last night with the same configuration.
    Any ideas as to what I may be doing wrong?
    Thank you.

    Hi,
    I would request you to check under backup options, scheduled backup is on.
    And also please make sure that the Backup and Restore feature requires an Azure storage account and container that must belong to the same subscription as the web app that you are going to back up.
    Do check this and let us know so that we can investigate further.
    Regards,
    Azam khan

  • Photoshop CS5 and CS6 does not start. Windows 7

    I am using Photoshop CS5 as well as CS6, 64-bit on Windows 7. Since the last few days, I noticed that Photoshop would take a very long time to start (earlier it used to start within few seconds). Today, I found that both the Photoshop versions do not start at all. Nothing happens when I click the short-cut on the Task Bar. Neither do they start through the Start Menu. Why does this happen and what is the solution?

    Have you tried using the task manager to see if Photoshop is hung and look at your windows reliability history to see if Photoshop CS5 an CS6 are crashing?

  • Photoshop CS5 64-bit does not detect Video Card

    I just updated from CS4 to CS5. I have a core i7 with an ATI HD 5700 series graphics card with the most recent driver 10.9. Photoshop is also updated to 12.0.1. For some reason, only the 64-bit version does not detect the graphics card. Photoshop CS4 64-bit and Photoshop CS5 32-bit see the graphics card fine. I noticed a few others have had the same issues. Has this problem been addressed yet? If not, is there a workaround?

    It's a recently-reported issue with Catalyst 10.9 on the Radeon 57xx.
    See this thread:  http://forums.adobe.com/message/3184458
    -Noel

  • Im having trouble restoring my MacBook Pro, "Comand" and R does not seem to be working for me.

    Everytime i try to restore it, it opens normaly to log it with a pop up window saying my start up disc is full. When i log in, my desk top is missing along with my personal wallpaper. Cant seem to do anything when i log in and i really need my comouter for work, someone please help. Just want to restore it.

    1. System Preference > Sound > Output
       "Settings for the selected device"
       Is the pointer for "Balance" set in the middle?
    2. Try to push the headphone a bit more into the port.
    3. Reset PRAM. http://support.apple.com/kb/PH4405
    4. Reset SMC.   http://support.apple.com/kb/HT3964
    5. If any of these steps does not help, contact Apple.
    Best.

  • Photoshop element 10 organiser does not install but editor works well

    Why the Organiser does not start since it is in the same package than that of the Editor?

    Moving this discussion to the Photoshop Elements forum.

  • Open with Application... setting does not seem to be working

    Mac OS X 10.6.6, FF 4.0 (RC1), Microsoft Excel 2011 14.0.2. I needed to download several files with .xls suffix.
    Firefox asked what I wanted to do with the file, I indicated Open with Excel, and retain this setting. I then tried the next download, and the "Open With..." button showed no settings. I check the Preferences>Applications area, and Excel is there as the application of choice, but it does not appear as the "Open With" application in the download dialog box. If I just go ahead and download, the file does not open. If I *do* re-select Excel, then the file downloads and opens properly, but the setting is not retained for the next download, even though the "always do this" box is checked. It's a minor issue.

    Has nobody experienced this issue before?

  • The form filling application does not seem to be working

    The automatic form filling does not appear to be working

    You have or had an extension installed (MegaUpload toolbar) that has changed the user agent from Firefox/3.6.4 to Firefox/2.0.0.4.
    You can see the Firefox version at the top and the user agent at bottom of the "Help > About" window (Mac: Firefox > About Mozilla Firefox).
    You can check the '''general.useragent''' prefs on the '''about:config''' page.
    You can open the ''about:config'' page via the location bar, just like you open a website.
    Filter: '''general.useragent'''
    If ''general.useragent'' prefs are bold (user set) then you can right-click that pref and choose ''Reset''.
    See [[Web sites or add-ons incorrectly report incompatible browser]] and [[Finding your Firefox version]]
    See also http://kb.mozillazine.org/Resetting_your_useragent_string_to_its_compiled-in_default
    To see all the History and Cookie options, select: Firefox > Preferences > Privacy > History: Firefox will: "Use custom settings for history" - See [[Options window - Privacy panel]]
    Firefox > Preferences > Privacy > History: "Remember search and form history"
    See also [[Form autocomplete]]

  • I am working on a Mac with Yos 10.10.1 and my clone stamp tool does not seem to be working.

    Am I doing something wrong?

    Provide the name of the program you are using so a Moderator may move this message to the correct program forum
    This Cloud forum is not about program problem help... a program would be Photoshop or Lighroom or Muse or ???

Maybe you are looking for

  • Total Tax and Non-Deductible column in Tax report

    Hi all, My client is using AU/NZ localization.  We need to customise a Tax report based on existing Tax Report in Financal Report-> Accounting> Tax> Tax Report. Does anyone know where to pull the information for colum "Total Tax" and "Non-Deductible"

  • SearchCatalogAvailabilityMonitor showing unhealthy for all database on DAG member mailbox server

    Hi All Help me to resolve server (all database) search catalogue availability monitor. I am facing a search catalogue "Unknown" issue for newly created copy database and also on same mailbox server "SearchCatalogAvailabilityMonitor" showing unhealthy

  • /etc/init.d/appserv script

    I want to setup the /etc/init.d/appserv file for Sun One App Serv 7 on a RedHat box. I guess the install will set this up automatically for Solaris, but nothing was created during my RedHat installation. Can someone please point me to a download of t

  • NSS6100 KEEPS REBOOTING

    Has anyone had issue with the nss6100 keeps rebooting its self over and over. Power light blinks green then turns yellow then unit turns off. And also unit will boot if a drive is removed from bay 1 or bay 2. Unit is running the latest firmware 1.14-

  • After Effects- Administrator Account

    Hi, ive been using AE for quite some time. Ive just installed windows vista 64 and ive started using AE, but the issue is, when i run it as an administrator, the program starts up and then there is a delay in the menus and the whole program is acting