Tool Preset problem

Trying to save three different dodge tools. Each one hase a different range. After saving one say with shadows range, then saving another with highlights range, all dodge tools are changed to highlights(ie the first one changed from shadow to highlight when the second preset tool was created.
OS XP. This is happening on several different computers...

Thank you, that worked. I also restarted PS after creating each new dodge tool and selected a different tool
before going back to the dodge tool.

Similar Messages

  • Photoshop CC - Missing Tool Presets

    I have just wasted over 2 hours with the adobe 'Customer Care' people trying to find out why I get the message 'No Tool Presets Defined for Current Tool' and this included them remote connecting to my iMac via 'TeamViewer'. The person concerned then sent me links to tutorials on the use of the Spot Healing Brush but they were no help whatsoever and CustomerCare have been unable to solve my problem and, to add insult to injury, the so-called 'care' expert, closed down our Chat without explanation. Fortunately their system has automatically sent a transcription of the chat.
    Anyway, to explain the problem:
    I opened an image (.dng) in Bridge which then automatically opens CameraRaw. I clicked on 'OpenImage' which then opens Photoshop. However, when I click any of the tools in the Tools Panel, the Spot Healing Brush as an example, I get the message "No Tools Preset Defined for Current Tool" so no sign of the Healing Brush, Patch, Content-Aware or Red Eye Tools. The Clone Stamp doesn't show Pattern Stamp tool, the Marquee tool only shows the Rectangular tool and so on. This applies whether I click or hover over the tool within the Tools Panel itself or when I click on the downward arrow in the Options Panel for the tool in question. A few of the tools do show some presets but not all of them.
    Please please help
    PS. Does anyone know how I can complain to Adobe about a very shoddy example of support?

    I'm a windows user so I do not know  the Adobe Photoshop environment on the Mac or the versions of Mac OS.  The only suggestion I could make would then be try using Adobe Cleaner to clean off Photoshop then  install Photoshop  Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

  • Texture attributes not saving with an Art History brush tool preset.

    I am sure that in the past Texture settings saved when I loaded a saved Art History Brush tool preset.  But suddenly, the Texture setting - specifically Depth, is not being remembered.  In other words - I have saved an Art History Brush as a Tool Preset. I have then used some other brushes and experimented with texture including the Depth setting.  When I go back to the saved tool preset, the Texture Depth setting has changed to whatever it was when I last used it - not its saved value.  I thought the point of Tool Presets is that they save all brush characteristics.  Maybe I have got this wrong.
    Help or info would be much appreciated.  I'm using CS6.
    ...this is weird.  The tool presets and their Texture attributes work fine in CS5.  Maybe I need to reinstall CS6.

    ...I reinstalled CS6 and imported old preferences.  The problem of reluctant attributes persisted after installation.  The answer appears to have been to reset the preferences.  Texture settings now behaving themselves.   I should have tried this first.  Oh well.

  • Saving a Tool Preset

    Hello
    When adding a new tool preset, Photoshop CS6 used to place your new preset in your existing toolp presets panel in alphabetical order.
    Lately, it stopped doing this - it just places the new preset at the bottom of the list, forcing me to go into the presets manager and then tediously dragging the new preset from the bottom of the list up into its proper alphabetically-ordered position. Doesn't sound like a big deal to most people I'm sure, but my tool presets list has several hundred presets, maybe even more than a thousand. So having to do this every time I add a new preset is becoming cumbersome.
    My question is where did this all go wrong - it used to do it automatically, but stopped somewhere along the lines. Anyone else experience this problem?

    In the Tool Preset menu (gear icon) do you have "Sort by Tool" checked on?
    Gene

  • Brush 'Tool Presets' not resizing and behaving erratically.

    Hello all,
    I'm running Ps CS6 Extended on a Macbook Pro running OS X 10.6.8. My problem is that suddenly my brush 'tool presets' seem to have gone crazy. Standard pencil brushes won't resize (in fact anything with a texture ticked on in the brush panel seems to be having trouble) and others are just spitting out plain old rubbish.
    I haven't updated anything or run anything different.. It just seemed to happen and now won't go back...
    Is this an issue that anyone has encountered before? Let me know what other info would be helpful to fully explain the issue...
    A similar thing did happen with one random brush ages ago. I couldn't resolve it so I just ignored it. But now my whole set is messed up. It's weird...

    Thanks, Trevor.
    I've tried, restarting everything. I've tried opening the .tpl's in an older version of Photoshop that I have (CS5.1 Extended) - and they work fine (that version also has Colourus 2 and Perspective Create extensions that I have on CS6), so I know the .tpl's are sound and the brush info is saved correctly in them.
    I tried 'reset brushes' in the tool preset drop down menu... But I don't know what "reset Preferences" is - should I be looking in Photoshop>Preferences...?
    I tried 'reset tool' but that just makes the brushes go back to their earliest round brush form.
    Any other ideas? Thanks for thinking on this... 

  • How to fill Tool Preset picker?

    When I select Custom Shape Tool, the Tool Preset picker on the upper right is empty despite the fact that there are a few dozen Custom Shapes loaded as can be seen in the Preset Manager. But how do I get those loaded shapes to appear in the picker?
    If I go to the Tool Preset pickers' flyout and select Load Tool Presets and navigate to .csh shape files, they appear light gray, ie, they cannot be opened/loaded.
    With no shapes in the picker, I know of no way to access the Custom Shapes that are loaded as seen in Preset Manager.
    Any help appreciated!

    Thanks!
    Btw, what's "my manual"? The box CS5 came in contained no manual. When I select Ps from Applications, it lists a number of folders and a Read Me pdf file, but no manual. I'm sure that's a totally stupid quesiton, but then that's my kinds quesiton!

  • Width tool presets drop down, extend the box

    just wanted to extend the box of the width tool preset drop down. in the control panel.

    Yes we can achieve this. But you need to use internal table in dropdownlist as show below:
    <b>Onintialization</b>
             entry-name = 'IC'.   entry-value = 'IC Text'.
             APPEND entry TO itab.
             entry-name = 'PM'.  entry-value = 'PM Text'.
             APPEND entry TO itab.
    <b>Layout</b>
          <htmlb:dropdownListBox id                = "LIST"
                                  nameOfKeyColumn   = "NAME"
                                   nameOfValueColumn = "VALUE"
                                   width             = "300"
                                   selection         = "<%= doc_type %>"
                                   onSelect          = "DDLB1Event"
                                   table             = "<%= itab %>" />
    <b>Page attribute:</b>
    entry     TYPE     IHTTPNVP
    itab     TYPE     TIHTTPNVP
    <b>OnINputprocessing:</b>
    CALL METHOD REQUEST->GET_FORM_FIELD
              EXPORTING
                NAME  = 'LIST'
              RECEIVING
                VALUE = doc_type.
    delete itab where name = doc_type.  " This will remove selected entry from Itab.
    if doc_type = 'IC'
             entry-name = 'IC'.   entry-value = 'IC Text'.
    else.
             entry-name = 'PM'.  entry-value = 'PM Text'.
    endif.
    insert entry to itab index 1.
    <i>* Reward each useful answer</i>
    Raja T

  • Group Tool Presets ?

    Is it possible to create folders within the tool preset panel to group tool presets, instead of having a long list ?

    I thought about scripting something like this, getting into Ps internal panels can be troublesome.  Hopefully they include this option in a future release, thanks

  • CS5 Crop Tool Presets Not Working - HELP!

    I am using CS5.  The Photoshop crop tool presets are not working.  For instance, if I use the Preset 8 inch x 10 inch and drag on an image which is say 12 x14 the crop does not stop at 8x10 but continues on to cover the whole image OR it covers only a portion of the image but the size of the crop is NOT 8x10 - it might be 10x12. 
    Actually there doesn't seem to be any rhyme or reason to what it is doing.
    I have cleared it, reset it, saved (my own presets) and reloaded.  I have closed out of Photoshop and even rebooted my computer. 
    Any Ideas what is going on and how to fix it?  All help will be greatly appreciated.
    Regards, Getting Really Annoyed

    It's kinda hard to tell from your description, but try the following
    and see if it helps:
    Make sure you don't have any values entered in the tool options bar
    for the width, height and resolution. If you do, use the clear button.
    If still not working, try resetting the photoshop preferences:
    Hold down the shft+alt+ctrl keys while starting photoshop, continue holding the keys
    until a dialog appears asking to reset the settings file, click yes.
    MTSTUNER

  • Toggle Tool Presets

    hi, this is a follow-up on another thread concerning toggling between a brush tool preset and an eraser tool preset. I've assembled the following script (mostly from csuebele) to try to toggle between "AIRBRUSH 1" (brush tool preset) and "Eraser Chiseled" (eraser tool preset). But it only works for the eraser tool preset when the eraser tool is active. It won't work with the brush tool preset whenever the brush tool is active, it gives an error "The command "select" is not currently available".
    function getCurrentTool(){
           var ref = new ActionReference();
               ref.putEnumerated( charIDToTypeID( "capp" ),
    charIDToTypeID( "Ordn" ), charIDToTypeID( "Trgt" ) );
            var desc1 = executeActionGet(ref);
           desc1 = desc1.getList(stringIDToTypeID("tool"));
             desc1 = desc1.getEnumerationType(0);
             desc1 = typeIDToStringID(desc1);
             return desc1;
           if(getCurrentTool() == "brushTool"){
    // =======================================================
    var idslct = charIDToTypeID( "slct" );
        var desc3267 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref1620 = new ActionReference();
            var idtoolPreset = stringIDToTypeID( "toolPreset" );
            ref1620.putName( idtoolPreset, "AIRBRUSH 1" );
        desc3267.putReference( idnull, ref1620 );
    executeAction( idslct, desc3267, DialogModes.NO );
    // =======================================================
              }else{
                 var idslct = charIDToTypeID( "slct" );
        var desc3276 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
            var ref1625 = new ActionReference();
            var idtoolPreset = stringIDToTypeID( "toolPreset" );
            ref1625.putName( idtoolPreset, "Eraser Chiseled" );
        desc3276.putReference( idnull, ref1625 );
    executeAction( idslct, desc3276, DialogModes.NO );

    I guess the link in the earlier thread answered it for me. Apparently, the user order cannot be saved in the Tool Presets, though they can be in the Brushes Presets.
    I solved my issue by adding "Artist's" in front of the brushes I need near the top, like Artist's Round Chalk - Opaque.
    Regular Brushes are in a groupling below the Mixer Brushes.
    I'd love to see this changed in a future version of Photoshop.
    M. Jackson

  • Tool Presets - resorts the tool order without permission

    Does anyone know how to save a set of Tool Presets and have CS3 keep the tools in the order that I set in the Preset Manager?
    I reported this as a bug over 2 years ago to Adobe, and they acknowledged the bug in CS2, but it STILL appears to be a bug now in CS3.
    Unless I'm doing something wrong?
    Thanks

    Neil, yes. Just wishing...
    What really needs to take place is for Adobe to spend 0.01% of its revenue LISTENING to users and developers.
    Sigh...

  • Mpeg2 preset problem

    So, I've been trying to export using the mpeg-2 60 minute high quality encode preset. The encoding appears to go off successfully in the batch monitor. However, the file that is exported appears as an unrecognizable file type. It appears just as a blank icon. However, when I double click on that file, droplet opens and can encode a .mov, heavily compressed version of my original project file. I feel like I have a problem with my settings in the mpeg-2 preset, and therefore cannot get my mpeg-2 file. However, I cannot find the problem. I tried posting about this a few days ago and no one had any ideas. Does anyone know what my preset problem might be?

    This may be an old problem (.m2v file kind) for which I've posted the fix several times. Not all of you may have the same cause, so this may not work for everyone. But here is a llnk on how to fix this (perhaps). Oh, by the way, this is an apparent QuickTime 7 bug.
    Waymen, "Finder relaunches when viewing M2V file info ..." #1, 03:54pm Sep 14, 2005 CDT<small><hr width="75%"><small>If this suggestion helps in any way, a confirmation or acknowledgment would be appreciated, since that would also help others who may be having the same difficulty. Do for others as you would have them help you.<center>Thanks for sharing, Waymen.</center></small>

  • Moving Tool Presets From CS to CS3

    Hi,
    I have a bunch of custom tool presets I have made over the years in PS CS1. For example, I have several custom crop presets I have made (with different widths, heights, resolutions). I have now installed CS3 and am wondering if I can move them over to it? If so how? I hope I do not have to create them all again.
    Thanks in advance for any help.
    Paul W.

    From the Tool Presets Palette flyout OR the Presets Manager choose Save Tool Presets. Name them and Save them somewhere and you can transfer them over using Load in the Presets Manager. You can also transfer them to other computers, put them on a sever, etc.

  • How to save tool presets as brush presets?

    I have some tool presets that would be very useful, but I normally just go to brush presets, which i have organized and which provide greater flexibility. Is there a way to turn "tool" into a "brush"? Going through defining brush presets, forced me to adjust all kind of things, but as tool presets they are already perfect. There has to be a way to do it easier! Hope you can help.

    gener7 wrote:
    Btw, just heard LinkIn just brought Lynda.com. Hope it doesn't become a train wreck under the new management.
    Gene
    I'll ad a giant AOL 'Me Too' to that Gene.  I don't blame Lynda and Bruce when there is $1.5b on the table, but I think it a sad reflection on our times that a dot.com that has questionable worth to our society, can afford to pay so much money for a genuinely useful service like Lynda.com.  Apparently they started with $20k and have built it up with no outside help, so they are sitting pretty right now.
    My concern is that the focus of Lynda.com does not shift even remotely towards business type courses, and away from creative.  BTW  I am absolutely loving my Lynda subscription.  It seems that no matter what the subject, if you ever get stuck on something, there is a world class course to put you straight. As regards Photoshop, I considered myself at least an expert, yet I have been able to find game changing new tips on almost a daily basis.  Or sometimes just a better way of doing things.  It absolutely helps to go into the expert courses with a good working knowledge, because it means you pick up the content straight away, and hopefully remember it. 
    Somebody was smiling down on me the day I was about to commit $250 for a year's subscription, and literally as I sat down at the computer, there was a ping to tell me a new email had arrived, and it turned out to be offering that same subscription for $150.  I suspect the apparent coincidence was driven by my recent visits to the site, but if that email had arrived ten minutes latter, I'd have been down a $100.  :-)

  • Type tool preset changes after switching tools?

    How can I keep my type tool preset from going back to the default after switching tools?
    I have a type tool preset that I use and then I go to another tool to do something -when I switch back to the type tool I have to re-click on the preset to activate it again. How can I keep this preset active?

    Reset your PS preferences (CMD+OPT+SHIFT) when you launch it.
    The tools should hold their most recent setting after that.

Maybe you are looking for

  • How to connect to HDMI TV

    Hi, Thought I had it sussed, got a Mini DVI to HDMI adapter, but the Mini DVI connection is too big for the port on my imac, just wondering what this port is called as I thought it was Mini DVI. I don't want to end up buying the wrong connection agai

  • Cash Flow Template Set Up

    I am trying to set up a cash flow template using GL Accounts (not cash flow line items). In making the Cash Flow Statement some items should show up as a negative and some should show as a positive Eg: Cash from receivables + and Cash to vendors - .

  • Changing stage timeline from inside a movieclip button

    I create a movieclip button, and I want to change main timeline from it. what should I do ? Is it useful to use MovieClip(root).gotoAndPlay(...) ; ? Is there any other way to change main timeline?

  • JDBC Driver Class for DB2 databases on OS/390

    Hi, To anybody who can help. I am trying to connect to DB2 database on OS/390 from my PC - Windows 2000. I have loaded IBM DB2 Application Development Client V7.2 as well as IBM DB2 Administration Client V7.2 I guess this is called using Db2 Connect.

  • Get the correct order of the tones for DTMF Decoder

    I am trying to decoder the DTMF stream signal (contains mutiple tones, delay, noise), however, I have the problem to seperate each tone in the stream signal in order to input into the Goertzel for further analysis.  The phone number is 534-343-3436.