Need help with Elements 10 & Smartbrush Tool

I'm new to PSE 10 and have a lot to learn.  I'm using it to enhance my photos of properties when I list and sell them.  I was doing fine with the Smartbrush tool and Quick Selection Tool after watching a few videos on the Internet, but now I'm experiencing an issue with these tools that is most likely a very quick adjustment.  When I choose either tool, instead of allowing me to choose an area of my photo, the selected area ends up the entire photo and after I clean that up, if I go anywhere even near to the edges of the photo, another selected area appears as a rectangular shape.  It's like I've lost contol of the tools and I'm not sure of what I've changed to make this happen.  Thanks for any help you can offer.

On the option bar for each of the tools, there is a little arrow, top left. Click on that and reset the tool.That may fix it..
If not, please report back.

Similar Messages

  • Need Help with the Clone Tool

    I need help with the clone tool, in that when I clone (let's say grass as example),  the new cloned area does NOT come out as sharp as the area selected.  It comes out much softer and somewhat blurred.  I have the opacity and flow both set at 100%.  This is very frustrating since I can not get a true clone.

    what "tip" do you have selected? where are you sampling from ( found in top option bar) ALSO make sure MODE is normal
    http://helpx.adobe.com/photoshop/using/retouching-repairing-images.html
    -janelle

  • Need help with log4j logging tool (org.apache.log4j.*) to log into database

    Hi,
    I need help with log4j logging tool (org.apache.log4j.*) to log into database using JDBCAppender. Have look at my logger code and corresponding log4j.properties file stated below. I'm running this program using Eclipse IDE and it's giving me the following error (highlighted in red) at the end:
    log4j: Parsing for [root] with value=[debug, stdout, Roll, CRSDBAPPENDER].
    log4j: Level token is [debug].
    log4j: Category root set to DEBUG
    log4j: Parsing appender named "stdout".
    log4j: Parsing layout options for "stdout".
    log4j: Setting property [conversionPattern] to [%x %d{HH:mm:ss,SSS} %5p [%t] (%c:%-4L %M) - %m%n].
    log4j: End of parsing for "stdout".
    log4j: Parsed "stdout" options.
    log4j: Parsing appender named "Roll".
    log4j: Parsing layout options for "Roll".
    log4j: Setting property [conversionPattern] to [%x %d{yyyy.MM.dd HH:mm:ss,SSS} %5p [%t] (%c:%-4L %M) - %m%n].
    log4j: End of parsing for "Roll".
    log4j: Setting property [file] to [HelloWorld.log].
    log4j: Setting property [maxBackupIndex] to [10].
    log4j: Setting property [maxFileSize] to [20KB].
    log4j: setFile called: HelloWorld.log, true
    log4j: setFile ended
    log4j: Parsed "Roll" options.
    log4j: Parsing appender named "CRSDBAPPENDER".
    {color:#ff0000}
    Can't find class HelloWorld{color}
    import org.apache.log4j.*;
    public class HelloWorld {
    static Logger log = Logger.getLogger(HelloWorld.class.getName());
    public static void main(String[] args) {
    try{
    // Now, try a few logging methods
    MDC.put("myComputerName", "Ravinder");
    MDC.put("crsServerName", "ARNDEV01");
    log.debug("Start of main()");
    log.info("Just testing a log message with priority set to INFO");
    log.warn("Just testing a log message with priority set to WARN");
    log.error("Just testing a log message with priority set to ERROR");
    log.fatal("Just testing a log message with priority set to FATAL");
    catch(Exception e){
    e.printStackTrace();
    ------------------------- log4j.properties file ------------------------------
    #### Use three appenders - log to console, file and database
    log4j.rootCategory=debug, stdout, Roll, CRSDBAPPENDER
    log4j.debug=true
    # Print only messages of priority WARN or higher for your category
    # log4j.category.your.category.name=WARN
    # Specifically inherit the priority level
    # log4j.category.your.category.name=INHERITED
    #### stdout - First appender writes to console
    log4j.appender.stdout=org.apache.log4j.ConsoleAppender
    log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
    log4j.appender.stdout.layout.ConversionPattern=%x %d{HH:mm:ss,SSS} %5p [%t] (%c:%-4L %M) - %m%n
    #### Roll - Second appender writes to a file
    log4j.appender.Roll=org.apache.log4j.RollingFileAppender
    ##log4j.appender.Roll.File=${InstanceName}.log
    log4j.appender.Roll.File=HelloWorld.log
    log4j.appender.Roll.MaxFileSize=20KB
    log4j.appender.Roll.MaxBackupIndex=10
    log4j.appender.Roll.layout=org.apache.log4j.PatternLayout
    log4j.appender.Roll.layout.ConversionPattern=%x %d{yyyy.MM.dd HH:mm:ss,SSS} %5p [%t] (%c:%-4L %M) - %m%n
    #### CRSDBAPPENDER - third appender writes to the database
    log4j.appender.CRSDBAPPENDER=org.apache.log4j.jdbc.JDBCAppender
    log4j.appender.CRSDBAPPENDER.Driver=net.sourceforge.jtds.jdbc.Driver
    log4j.appender.CRSDBAPPENDER.URL=jdbc:jtds:sqlserver:/arncorp15:1433;DatabaseName=LOG
    log4j.appender.CRSDBAPPENDER.USER=sa
    log4j.appender.CRSDBAPPENDER.PASSWORD=p8ss3doff
    log4j.appender.CRSDBAPPENDER.layout=org.apache.log4j.PatternLayout
    log4j.appender.CRSDBAPPENDER.sql=INSERT INTO LOG (computername, crsservername, logtime, loglevel, threadname, filename, linenumber, logtext) VALUES ('%X{myComputerName}', '%X{crsServerName}', '%d{dd MMM yyyy HH:mm:ss,SSS}', '%p', '%t', '%F', '%L', '%m')
    #log4j.appender.CRSDBAPPENDER.sql=INSERT INTO LOG(COMPUTERNAME,CRSSERVERNAME,LOGTIME,LOGLEVEL,THREADNAME,FILENAME,LINENUMBER,LOGTEXT) select host_name(),'${CRSServerName}${InstanceName}','%d','%5p','%t','%F','%L','%m%n'
    #log4j.appender.CRSDBAPPENDER.sql=INSERT INTO LOG (computername, crsservername, logtime, loglevel, threadname, filename, linenumber, logtext) VALUES ("%X{myComputerName}", "%X{crsServerName}", "%d{dd MMM yyyy HH:mm:ss,SSS}", "%p", "%t", "%F", "%L", "%m")
    ------------------------------- end of log4j.properties file ------------------------------
    Here is the directory structure of my program. My log4j.properties file and HelloWorld.class file are residing in folder HelloWorld\bin.
    HelloWorld\bin
    HelloWorld\lib
    HelloWorld\src
    Please note - The same program works fine for console and file appender when I comment the database appender part in my properties file.
    Thanks
    Ravinder

    try this :
    log4j.appender.PROJECT.Append=false

  • Need Help with the Mesh Tool

    I'm having trouble adding a gradient mesh to this image:
    http://img237.imageshack.us/my.php?image=picture1xi9.png
    I would like to make it look a little more 3D or shiny with a white gradient. When I click inside the shape with the mesh tool, it creates some crazy mesh lines.. I'm pretty new to this and would really, really appreciate some help. Thanks! :)

    I see the problem as well you may have to make an clipping mask of a rectangle or other shape that is more regular using this shape as the mask and grouping them.
    <br />
    <br />
    <a href="http://www.pixentral.com/show.php?picture=1wekWFXbGiN7ixwI4ulbOLsAZQRp0k" /></a>
    <img alt="Picture hosted by Pixentral" src="http://www.pixentral.com/hosted/1wekWFXbGiN7ixwI4ulbOLsAZQRp0k_thumb.png" border="0" />

  • Need help with the brush tool.

    I just got Illustrator yesterday, and I'm trying to ink a sketch. So I open the file of the sketch, Save it as an adobe Illustrator document, then I create a new layer, then when I go to trace the sketch I get a symbol saying I cant use the brush tool. How do I fix this? Thanks in advance.

    Have you actually selected a brush stroke from the Brushes palette? Brusches are differnt from normal line strokes, the latter of which you can create with the Pencil tool...
    Mylenium

  • Help with elements 6 - tools

    I have been working with both elements 5 and CS4 without any problems.  Yesterday I purchased a wacom tablet and elements 6 was part of the package.  I loaded it and tried to start to edit some photos.  I am unable to get the clone tool, healing tool, eraser tool and most of the others to work.  I have been able to straighten and crop, but that is all.
    Has anyone else encountered this problem?  It very well could be a user error issue, but I can't seem to figure out how to get these tools to work.
    Help!

    You may have to go to the Wacom site and update your drivers. You might have a look through this thread as I believe CS4 has/had issues:
    http://forums.adobe.com/thread/373269
    I don't have E6 but I seem to recall in Elements there's a box that needs to be ticked that says "Tablet Support". It should be somewhere in the Options bar...most likely under one of those tiny arrows...when the brush tool is selected.

  • Need help with elements purchase

    I PURCHASED ELEMENTS 13 AND PAID FOR IT. i NOW FIND THAT i CANNOT INSTAll this program to my XP 3 system. I hav e tried the Chat system and have progeam descriptions twice and they say they have not received communication form me. I want my purchase negated and the money returned to my account.@

    help
    As John has pointed out this is not Adobe. Rather a user to user forum. Only Adobe can take care of the problem that you have described.
    You could also try clicking on
    Contact Customer Care
    Premiere Elements
    Membership, Account, Payment
    Payments, Invoices, Orders
    Chat Panel
    If the link does not hold its set, then you will need to navigate to the Chat Panel using the above titles as guides.
    Do you have a case number from your prior contact(s) with Chat about this matter? Do not post it here if you have.
    Just use that as a reference when you do make contact with Chat.
    ATR

  • I need help with elements 8

    I just got the full vers of elements 8 and it wants me to use the trial vers..WHY? and how can I fix that?

    Did you enter your 24-digit serial number during installation? If so, did it validate?
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children
    If this post or another user's post resolves the original issue, please mark the posts as correct and/or helpful accordingly. This helps other users with similar trouble get answers to their questions quicker. Thanks.

  • Need help with Elements loading RAW images since I switched cameras.

    I recently switched from a Canon Rebel XT to a Canon Rebel T1i. I have Elements 6.0 and was able to see RAW images with my old camera. For some reason the RAW images aren't loading in Elements now. I get a message saying the files are corrupt. I've tried different cards but still no difference. Any suggestions?

    Please read this TechNote:-
    http://kb2.adobe.com/cps/407/kb407110.html
    It shows at:-
    http://kb2.adobe.com/cps/407/kb407111.html
    you need at least ACR 5.4 for your T1i/500D
    ACR 5.6 and therefore earlier versions work on PSE 6.
    You should upgrade your PSE 6 to ACR 5.6; it does work on PSE 6 at least in WIndows. I know because ACR 5.6 works on my PSE 6 under Windows Vista.

  • Need help with the "jar" tool

    could i be having trouble with the CLASSPATH variable if the command line tool "java" works, but "jar" and "javac" don't work?
    what do i need to do to make sure these tools work? (besides trying them, as I have sufficiently done that)

    What exactly doesn't work? If javac and jar are not found, it could be that you downloaded the runtime environment only, and not the full development kit.
    Is javac.exe present in ../yourJavaDirectory/bin/

  • Need help with color replacement tool ps CS6

    I am trying to use the color replacement tool to change the color of a shirt on a picture.  I have choosen white as the foreground color, but when I go to paint it comes out grey.... I tried using colors from the swatch and the same thing is happening.  When I choose a different color say red for example... the color that gets painted is some version of red but not the red that I have chosen.
    What am I missing?

    Funny never had to use that tool before. Anyway, what I found play with that tool was the color applied is totally dependent on the luminosity of the color below it. It other words it protects highlights and shadows for example. Which would block it from creating pure white.
    To see how this works, the color adjustment layer has an option to preserve luminosity.
    But in the end, you will use hue/saturation as it provides greater control. Plus you can clip to a layer or use a mask on it. Can't beat all that non-destructive process going on.

  • Need help with elements 11

    Using  Elements 11 video exported to dvd is distorted

    kco13
    Thanks for the follow up.
    Please clarify/verify the scenario.
    a. You produce a video in imovie in your Mac computer.
    b. That video gets imported into Premiere Elements 11...is that Premiere Elements 11 on Windows 7 or 8 64 bit or other Windows operating system OR is Premiere Elements 11 also on your Mac computer with imovie?
    c. This imovie video was taken to Premiere Elements 11 Windows or Mac for the burn to DVD (standard or widescreen?) where you obtained "fine" results.
    Now here is where I am not sure of my interpretation of what you wrote
    added a few more clips from imovie then exported back to p.e. then the isuses started..
    From that I am assuming that the Premiere Elements 11 work is being done on some Windows operating system, presumed for now Windows 7 or 8 64 bit.
    a. What are the properties of the video that went into the successful Premiere Elements 11 DVD-VIDEO on DVD disc?
    b. What are the properties of the "more clips" that you added to the original Premiere Elements project?
    c. What Premiere Elements 11 project preset was set by you or the program for the Premiere Elements 11 project in use for this work? Please see Edit Menu/Project Settings/General, Editing Mode, Timebase, Frame Size.
    Comments about AVCHD to DVD-VIDEO on DVD are not applicable until we get details indicating that your video has AVCHD video compression. Right now, we do not know the properties of your source media (compressions nor file extension) nor other related details.
    Sorry for all the questions. But the answer will be in the details. But, whatever the case, your project shows promise in that you do get good results before the "more clips".
    Might I ask...if you are using Premiere Elements 11 Windows, why? Premiere Elements 11 Mac should do the job for you.
    And Premiere Elements Mac is a 64 bit application when run on Mac 64 bit.
    Please review and do not hesitate to let me know if I have misinterpreted any of what you have written.
    Looking forward to working with you on this matter to a successful conclusion
    Thanks.
    ATR

  • Need help with Elements and image size on my web site.

    I have edited my photos in elements and loaded them on my website but when I click on them on the site to enlarge, some get really really big and others are fine. I don't know what Im doing wrong.
    Any suggestions

    Go to File>save for web. This brings up a dialog. Enter 800px or so for the longest side, check "constrain proportions" , and for your purpose you will no doubt want to save as JPEG - look under presets. I usually select high quality.

  • Need help with Patch Tool in CS5

    I am having a problem using the patch tool in Photoshop CS5. I click on the Patch Tool and select the Source option from the upper tool bar. Then I circle a gray area in the background of my photo and, holding down the left mouse button, I drag the selection to a black area in the background and release the mouse button. Instead of turning the selected area black it just makes the area slightly darker than it was originally. I just don’t understand why I can’t use the patch tool and any help would be appreciated.

    Thank you very much for these suggestions. Robert
    Noel Carboni <[email protected]> wrote:
    Noel Carboni http://forums.adobe.com/people/Noel+Carboni created the discussion
    "Re: Need help with Patch Tool in CS5"
    To view the discussion, visit: http://forums.adobe.com/message/4308270#4308270

  • Installing Elements 11 on Mac. Need help with install error "Setup wants to make changes."

    Installing Elements 11 on Mac 10.8.2. Need help with install error:  Setup wants to make changes. Type your password to allow this."  After entering Adobe password, nothing happens.  Locked from further installation.  Any ideas?  Adobe phone support could not help.

    Just before letting changes (installation in this case) be made on the system, Mac OS prompts for password & this has to be the Mac system password. This password prompt is the system's own native prompt & would accept the system password only. Please make sure it is the right system password (all/admin rights) and the installaion should run.

Maybe you are looking for

  • Run a query on linked tables to create a new datasource

    Using Crystal XI I have a report that draws from two data sources.  They can't be joined at the server side, but they are linked in Crystal Database Expert.  I can't figure out if Crystal gives me a way to write an SQL Query to run an aggregate funct

  • Microphone iPad 2 3g

    Today I could not record a video and microphone not doing its job because once I play the video the audio is heard as interference and do not hear any sound.

  • Problem when updating Billing Block

    Hi All, Scenario : I have created a debit memo request without a billing block.                 In a Separate Program we need to update the Billing block.                 I am using BAPI_SALESDOCUMENT_CHANGE in the following                 manner :

  • HT4623 My iTunes isn't working

    Since the ios7 update my iItubes isn't working

  • How to identify rows to update on tabular form?

    Application Express 3.2.1.00.10 Hello! I have a tabular form in my application that I created through the wizard. The form is based on a table with a primary key and a trigger to populate the next key upon insert, so as a result going through the wiz