Burn tool problem - Elements 7

When I select the burn tool it used to display a circle as the cursor (showing the area to burn) now it has changed to a cross hair and i have no idea where the edge of my burn radius is... anyone know how to change it back?

Hi,
Do you have Caps Lock on?
Windows or MAC?
Brian

Similar Messages

  • Dodge and burn tools in elements 12?

    I just downloaded Elements 12. Why does it look so different? Are there fewer tools than previous versions? I don't see dodge and burn tools anywhere. Please help if you can!

    I don't see dodge and burn tools anywhere.
    http://forums.adobe.com/message/5755706

  • Burn tool problem

    The burn tool is acting as a brush and leaving a series of circles any idea how to return it to normal please ?

    Try selecting the tool and doing a reset.

  • Where is the burn and dodge tool in elements 12?

    Where is the burn and dodge tool in elements 12??

    Should be like version 11.  It is on the left in Expert.  Look in the Enhance block.  It can show up as Dodge,
    Burn or Sponge.

  • I could not find the "burn tool" in Photoshop 7, so I purchased Photoshop Elements 12, and I still cannot find the "burn tool". Where is it?

    I could not find the "burn tool" in Photoshop 7, so I purchased Photoshop Elements 12, and I still cannot find the "burn tool".
    Does the "burn tool" still exist? If so, where is it???
    Thanks

    Well, as I always say... If I want things done right, I have to do them myself.
    I found the solution on the Internet... One must place your pointer on the icon that is presently showing and then press the letter "o" key to toggle between the Burn, Dodge, and Sponge tools.

  • ELEMENTS 9     (LASSO TOOL PROBLEM)

    ANY GOOD NEWS FROM PHOTOSHOP ON THE CONTINUING LASSO TOOL PROBLEM, LIKE , WHY DOES,NT IT WORK?

      Try the Quick Selection tool for more control. Simply press the Alt key to change from plus to minus to correct mistakes as you go.
     

  • Burn tool issues

    This is going to sound stupid, but I can't access the burn tool. Photoshop defaults to the dodge tool, but when I go to click on the the corner, it won't display the burn and sponge options. Am I missing something? None of the tools will show me the other options. Am I doing something wrong or do I have a faulty program?

    Depending on your Preferences you should be able to select the alternate Tools either with repeated hitting of O or shift-O.
    But as with all unexplainable Photoshop-problems You might try trashing the prefs (after making sure all customized presets like Actions, Patterns, Brushes etc. have been saved and making a note of the Preferences You’ve changed) by pressing command-alt-shift on starting the program or starting from a new user-account.

  • Depth of Field tool in Elements 11

    I have a problem with the depth os field tool in Elements 11. When I add focus, the focus area becomes a black smudge, is there a fault?  Your help is appreciated.

    Hi,
    OK, in case it makes any difference, what operating system are you using?
    To me, it looks as though you are trying the simple method.
    Are you clicking on the Add Blur button first?  - Does the image go out of focus after you click on the button?
    After that, then you select the area to be in focus as mentioned above.
    It is important to do things in the order top to bottom.
    The guided mode really uses layers, one of which is the black mask you are seeing. For interest sake, if you manage to get it to work properly, if you switch to Expert mode, you will see the layers it has created.
    Good luck
    Brian

  • Script and burn tool

    Hello all !!
    How can the burn tool parameter : range, exposure, size, be place in a script ?? 
    Thanks.
    Janou.

    range
        Values: 'burnInS' | 'burnInM' | 'burnInH'
        Get by script: True
        Set by script: False
    exposure (or 'opacity' in this burn tool)
        Values: 1% - 100%
        Get by script: True
        Set by script: False
    size
        Values: 1% - 1000%
        Get by script: True
        Set by script: True
    Also all this ones can be get and set by script:
    Diameter [1-500], Hardness%, Angle [-180/180], Roundness%, Spacing [0-1000], Flipy Boolean, Flipx Boolean
    The problem is exposure
    My suggestion would be to do this workarround:
    For each tool, create a group of presets like this:
    'burnInS010', 'burnInS020', 'burnInS030', 'burnInS040', 'burnInS050', 'burnInS060', 'burnInS070', 'burnInS080', 'burnInS090','burnInS100'
    where 'burnInS010' means Burn Shadows opacity 10%, etc (you could have more accuracy with more opacity values, of course)
    Then do the same for the other Ranges using
    'burnInM010', 'burnInM020',...
    'burnInH010', 'burnInH020',...
    'dodgeS010', 'dodgeS020',...
    'dodgeM010', 'dodgeM020',...
    'dodgeH010', 'dodgeH020',...
    Then by script you could pre-select the preset you want and put the other preferences by code.
    After you have ALL the presets created you can use this code:
    // Select BurnTool with all parameters
    // collected from several sources and compiled
    // If the preset doesn't exist, it gives a warning, telling how to create a new specific preset so the error doesn't comes again
    app.currentTool = "burnInTool";
    var Range = 'S';  // 'S' shadows | 'M' midtones | 'H' highlights
    var Exposure = 30;  // 10, 20, 30, 40, 50, 60, 70, 80, 90, 100
    selectPresetBurnDodge(Range, Exposure);
    setBrushFeatures_Burn(150, 80,undefined,undefined,undefined,undefined,undefined);
    ///////////////////////////////////////// Use Range and Exposure to choose the right Preset
    function selectPresetBurnDodge(range, exposure) {
        exposure = (exposure < 100) ? '0'+exposure.toString() : 100;
        var presetName = app.currentTool.replace(/Tool/,'') + range + exposure;
        var Presets = getPresetList();
        var thisPresetExists = false;
        for(var v in Presets){
            if (String(Presets[v]) == presetName) {
                thisPresetExists = true;
                break;
        if (thisPresetExists) {
            if (app.currentTool == "burnInTool" || app.currentTool == "dodgeTool") {
                var desc = new ActionDescriptor();
                var ref = new ActionReference();
                ref.putName( stringIDToTypeID( "toolPreset" ), presetName );
                desc.putReference( charIDToTypeID( "null" ), ref );
                executeAction( charIDToTypeID( "slct" ), desc, DialogModes.ALL );
        } else {
            alert("This Preset name '"+presetName+"' doesn't exist.\n\nCreate new " + app.currentTool + " preset.\nName:\t"+presetName+"\nRange:\t" + range+ "\nExposure:\t" + Number(exposure));
    ///////////////////////////////////////// Set Brush
    // Diameter [1-500], Hardness%, Angle [-180/180], Roundness%, Spacing [0-1000], Flipy Boolean, Flipx Boolean
    function setBrushFeatures_Burn (Diameter,Hardness,Angle,Roundness,Spacing,Flipy,Flipx) {
        var ref = new ActionReference();
        ref.putEnumerated( charIDToTypeID("capp"), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
        var appDesc = executeActionGet(ref);
        var toolDesc = appDesc.getObjectValue(stringIDToTypeID('currentToolOptions'));
        var brushDesc = toolDesc.getObjectValue(stringIDToTypeID('brush'));
        if (Diameter == undefined) Diameter = brushDesc.getDouble(stringIDToTypeID('diameter'));
        if (Hardness == undefined) Hardness = brushDesc.getDouble(stringIDToTypeID('hardness'));
        if (Angle == undefined ) Angle = brushDesc.getDouble(stringIDToTypeID('angle'));
        if (Roundness  == undefined) Roundness = brushDesc.getDouble(stringIDToTypeID('roundness'));
        if (Spacing == undefined) Spacing = brushDesc.getDouble(stringIDToTypeID('spacing'));
        if (Flipy == undefined) Flipy = brushDesc.getBoolean(stringIDToTypeID('flipY'));
        if (Flipx == undefined) Flipx = brushDesc.getBoolean(stringIDToTypeID('flipX'));
        var desc = new ActionDescriptor();
        var ref = new ActionReference();
        ref.putEnumerated( charIDToTypeID( "Brsh" ), charIDToTypeID( "Ordn" ), charIDToTypeID( "Trgt" ) );
        desc.putReference( charIDToTypeID( "null" ), ref );
        var desc1 = new ActionDescriptor();
        desc1.putDouble(stringIDToTypeID('diameter'), Diameter);
        desc1.putDouble(stringIDToTypeID('hardness'), Hardness);
        desc1.putDouble(stringIDToTypeID('angle'), Angle);
        desc1.putDouble(stringIDToTypeID('roundness'), Roundness);
        desc1.putDouble(stringIDToTypeID('spacing'), Spacing);
        desc1.putBoolean(stringIDToTypeID('flipY'), Flipy);
        desc1.putBoolean(stringIDToTypeID('flipX'), Flipx);
        desc.putObject( stringIDToTypeID('to'), charIDToTypeID( "Brsh" ), desc1 );
        executeAction( charIDToTypeID( "setd" ), desc, DialogModes.NO );
    // get all Presets
    function getPresetList(){
        var ref = new ActionReference();
        ref.putEnumerated( charIDToTypeID("capp"), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
        var appDesc = executeActionGet(ref);
        var List = appDesc.getList(stringIDToTypeID('presetManager'));
        var presetNames=[];
        var list = List.getObjectValue(7).getList(charIDToTypeID('Nm  '));
        for (var i = 0; i < list.count; i++) {
            var str = list.getString(i);
            presetNames.push(str);
        presetNames=ReturnUniqueSortedList(presetNames);
        return presetNames;
    function ReturnUniqueSortedList(ArrayName) {
        var unduped = new Object;
        for (var i = 0; i < ArrayName.length; i++) {
        unduped[ArrayName[i]] = ArrayName[i];
        var uniques = new Array;
        for (var k in unduped) {
            uniques.push(unduped[k]);
        return uniques.sort();

  • Dodge/Burn Tool

    Hi. Just been playing with PSE8 and having problems with the dodge/burn tool. Know it's usually located with the sponge tool but for some reason I can't access them. The sponge tool is visible in the tool box but when highlighted, the options at the top are only for brush type/brush tool/Mode and Flow. Any thoughts?

    when highlighted, the options at the top are only for brush type/brush tool/Mode and Flow
    Just FYI, this is going to be true for all grouped tools--the other tools in a subgroup no longer appear in the options bar, only in the toolbox itself, but you can still switch by repeatedly tapping the letter shortcut key for the tool group.

  • Text tool in elements 10 has taken to locking up computer

    Any attempt to use text tool in elements 10 has taken to locking up computer. I do not want to pay for an upgrade until I know that one of two things will happen: 1) the upgrade will fix this situation, OR 2) there is a way to repair the problem so that the upgrade will install properly

    Select the T tool and try a reset - see image below:

  • Transform tool in Elements 4 not working

    I'm trying to use the transform tool in Elements 4. All seems to be well until I hit the return key to activate the changes and then nothing happens. The image remains on screen with the transform perspective change visible but it doesn't actually make the change. I use an iMac with OSX.10.5.5
    Can anyone offer advice?

    No, what I did is still there visible on screen but not applied to the image. I'm finding it quite hard to explain using the correct terminology but if you visualise pulling the top triangles in so that two triangular sections appear on the edges (giving me, if the change would be applied, sides that are parallel to the sloping verticals in the image - which is the distortion I'm trying to correct), then committing this change, the marching ants disappear, the two triangular sections on the edges remain visible but no correction is applied to the image.
    Does this help to describe my problem? Even more relevant, perhaps, is that I tried loading PSE3 into a PC and exactly the same problem emerged with transform perspective commands.
    I'm sure you are right about my workflow. There is some fundamental issue that I haven't addressed properly. I don't need Photoshop much for the sort of work I do. Almost everything is well handled by Lightroom. So I haven't actually used this part of Photoshop since giving up CS2 in my old PC.
    Thank you again for your patience in trying to resolve this.

  • Can I make a 1 pixel burn tool?

    If I use a pencil, I can draw one pixel at a time. However, if I switch to the Dodge or Burn tools, even selecting 1 pixel width, it still is soft. One click effects 8 pixels. How can I truly harden the tool to only darken 1 pixel at a time?
    Thanks

    Sure...just load up your hard square brushes from Photoshop's brush presets.
    But there's still a problem, that is: Even with 1 pixel hard square brushes, there's been a bug in Photoshop for years that causes the effect to extend out past the single pixel to the right and downward. In other words, you want to affect just a single pixel, but it will actually affect a 2px × 2px region, where the pixel your cursor is over is the one in the upper left of that 2 × 2 box. You may have to make a marquee selection to constrain your dodging/burning operation.
    This bug affects all the tools that use the brushes.

  • Dodge and Burn tools in v9

    I just moved up from Elements v4 to Elements v9.  Where are the dodge and burn tools?  Then again, maybe they don't want guys over 70 to be using such things.  < Smile >

    Hi terry
    Right click on that blue thing!

  • How can I work through a Burn DVD problem?

    In a perfect world, you could put together a project out of any media, click the Share tab and burn it to a disk. Unfortunately, for a variety of reasons – some related to Premiere Elements, most related to operating system drivers or program conflicts, this sometimes doesn’t go as smoothly as it should.
    The simplest solution is to break the process down into its elements and then troubleshoot each element individually.
    There are three main reasons for a problem burning a DVD or BluRay disc: challenging source video (including photos that are larger than the recommended 1000x750 pixels in size); interfacing issues with your disc burner (often the result of a program like Nero not sharing the burner with other programs); and lack of computer resources (namely lack of available scratch disk space on your hard drive). This workaround eliminates most Burn Disc problems. And those it doesn’t eliminate, it at least helps you isolate where the problem is occurring.
    1.    Burn to a folder rather than directly to a disc. Select this option from Share/Output/Disc. This eliminates the possibility that other disk burning software is interfering with communication with your computer’s burner. Once the disk files are created, you can use your computer’s burner software to burn the VIDEO_TS folder and its contents to a disk.
    If this doesn’t work, it could be that your computer lacks the necessary resources, as discussed below.
    2.    Clear space on and defragment your hard drive. A one-hour video can require up to 50 gigabytes of free, defragmented space on your hard drive to render and process (depending on your source files). Even a “pure” AVI project can require 20-30 gigabytes of space.
    Clear off your computer and regularly defragment it, per Maintain Your Computer, above, and you’ll reduce the likelihood of this being an issue – assuming you’ve got an adequately powered computer and an adequately large hard drive in the first place.

    Hi
    What I would do is start a new project i.e. XXXXXX Final Cut.
    Then I would import the finished AVI file into the project and burn it to DVD.
    I have also found that PE is sensitive to the files being fragmented.
    When I have a project in the works I defragment the drive or the folders that the project is before proceeding.
    This has actually made the difference between whether it would work or not on some projects.
    I also shut down and restart the program just before burning the project to disk, to clear out any thing using resources.
    I use Defraggler to defrag my files it's free and works really well.
    And you can chose to defrag what you want or the whole drive.
    I run it several times a day when I'm working on big files.
    http://www.filehippo.com/download_defraggler/
    Mike

Maybe you are looking for

  • Content tab in LTS

    Hi Experts, What is the purpose of content tab in the logical table source(LTS) after mapping the columns in the LTS why we have to set the logical level for the dimension if we won't set what will happens. Please let me know with good scenario for b

  • Connection failure - Itunes tells me to check my date/time. Help?

    Evening, everyone. I'm having some trouble connecting to Itunes. I get the following error message when i try - "Itunes could not connect to the music store. A secure network connection could not be established. Check that your computer's date and ti

  • My MagSafe Charger / Power Supply is not working

    I am using mid 2009 13" MacBook Pro with 85W MagSafe  . My operating system is Lion 10.7.4. I heard a "click" coming from the direction of where my charger and just before and now its not working. The light is not coming on the charger itself No powe

  • Creating a function with  a for loop and %type

    Hello, I am trying to create a function which contains a for loop as well as %type. This function is on a student table and i am trying to create a function which will display the zip which is a varchar2(5). I need to do this through this function. H

  • Deleting unwanted words in iPhoto Slideshows

    I have learned--finally--to add captions to individual images in my slideshows, but now I want to delete words that I didn't--intentionally--put there.I put six images into a Slideshow I made for training purposes. I added "test 1" for image one, "te