Hud color picker doesn't change

Hi
i tried different hud color picker , but it's the alway the same shape
i mean i can Hue stip,hut stirp huge hue wheel ,hue wheel medium , hue wheel large
but i can't change  it
i mean whatever i select , i have always the same hue strip
there is not different if i select the Hue stip,hut stirp huge, hue wheel ,hue wheel medium , hue wheel large
it's always the same
w7 32bit

thanks you so much!!!!!!!!!!!!!
for the manual i clicked help F1 and download the pdf , is in the pdf all the help that i see online?
but is there a pdf with all the shortcut of cs5 ?
i remember there is a reg key to add to cs4 to go back to the default shortkey
is there ony for cs5?

Similar Messages

  • HUD Color Picker

    the HUD color picker is pretty useful, but it's buried under a complicated shortcut (shift+alt+ctrl+right button) all held down at the same time. When all buttons are released, the color picker disappears.
    Here's my question: when the picker is visible, the saturation and value automatically change as you simply hover the cursor anywhere within the 'square' portion of its window. (The color ring is on the outer edges, and I'll get to that).  You don't need to click on the picker to choose a new saturation or value; you only need to hover ontop of the new saturation/value and then release the buttons when you're ontop of the saturation/value that you'd like to select. As you hover within the window, the saturation/value is automatically updating in real time depending on what location your cursor is ontop of within the square portion of the window. But the problem is that when the picker first becomes visible, the cursor is automatically placed directly in the center of its window. So when you hover the cursor to the outer edges where the color ring is (in order to shift the hue), it is also shifting the saturation/value as you pull the cursor from the center of the HUD window over to the ring on the outside. Hope this makes sense.
    How do you use the HUD color picker to shift only the hue without affecting the saturation/value?

    well, I've managed to re-map the entire process since starting this thread (using AutoHotKey). Here's what I do now:
    hold down 'b' on the keyboard (hold it down, not press+release) and the standard photoshop color picker window appears. I can now choose my color, hue, and saturation (as normal). No worrying about values or saturations shifting; this is the default color picker window.
    then, release 'b' and the color picker window disappears. This is essentially *identical* to the HUD color picker function, except that there are 2 improvements:
    -you no longer need to press 4 keys to get it to appear (shift+ctrl+alt+right button) - you only need to hold down 'b' on the keyboard
    -when you release 'b', the color picker window disappears, exactly the same way the the HUD color picker does.
    The only drawback I would suppose, is that's it's a fraction slower - not *quite* as fast as the HUD color picker, but that would be nitpicking. Still works fast, and great.
    But with the HUD color picker, I would still like to know if there's a way to keep the same sat/value while only shifting the hue... i find it hard to believe that Adobe implemented this HUD color wheel with such a major flaw... I'm thinking it's got to be something I'm doing wrong

  • HUD color picker in CS6

    I am seeing something very strange when I attempt to access the HUD color picker in PS CS6. The picker only displays when I have the PS Preferences box open. If I use the keyboard shortcut of 'control+option+cmd click' with only the image open minus the Preferences I get nothing.
    I am using a MacPro with  NVIDIA GeForce 320M.
    Any ideas as to how to fix?

    The HUD colour picker doesn't appear when certain tools are active. It won't appear with Move Tool or Rectangular Marquee, for example, but it should appear with most tools. I'm using the same GPU with OS X 10.6.8.

  • Hud color picker issue?

    cs5 recently installed on mac at workplace. I don't seem to be able to switch form the wheel in preferences. Have chose strip, but still have wheel on restart of app. What I would like more is to be able to turn it off, I find it really annoying.I know if I turn off the gpu stuff it goes away, but the zoom thing is nice. Any answer?

    BTW,
    The HUD Color Picker is not the same as the Eyedropper tool sampling ring. I assumed you were talking about the sampling ring and wanted to turn it off. If you are talking about the HUD color picker not changing from Hue Wheel to Hue Strip, sorry for my misunderstanding. I'm not sure what might be the underlying issue for that case.
    See this in the CS5 Help for more info:
    http://help.adobe.com/en_US/photoshop/cs/using/WSba26e7b0742782c7-ca98dbb124ffdb1d60-8000. html
    thx,
    steve

  • CS5 extended   color picker want to change format

    Color picker box has changed.  I would like to change it back so tones are in big box on left and colors or hues in small box on right

    Here is the link to the  information that was helpful to me: http://planetphotoshop.com/color-picker-versatility.html
    I had deselected the H button (on the right hand box with descending order of H S B  I had instead selected the S button and so the format
    that came up consistently was for Saturation instead of Hue. 

  • Using the color picker component to change background is coving up the rest of the elements

    Hello,
    I am trying to learn some scripting for components.
    I have a bunch of stuff working and I got the color picker component to change the color of a movie clip and another one to change the text color.
    I have another script that does the background color, but, when I use it with this script, it covers up the other components.
    How can I use the color picker to change the background color of the stage without covering up the the movie elements?
    Here are the two scripts:
    script one-works fine on the 2 elements it is targeting
    import fl.events.*;
    import fl.events.ColorPickerEvent;
    myColPic.addEventListener(ColorPickerEvent.CHANGE,changeHandler);
    function changeHandler(event:ColorPickerEvent):void {
        var colorInfo:ColorTransform = new ColorTransform;
        colorInfo.color = event.color;
        myBox.transform.colorTransform = colorInfo;
        trace(event.target.hexValue);
    myTextPic.addEventListener(ColorPickerEvent.CHANGE,changeText);
    function changeText(event:ColorPickerEvent):void {
        var colorTypeInfo:ColorTransform = new ColorTransform;
        colorTypeInfo.color = event.color;
        myType.transform.colorTransform = colorTypeInfo;
        trace(event.target.hexValue);
    Script 2-works fine in an empty movie, but if I add it to the script above, those elements get hidden..
    import fl.controls.ColorPicker;
    import fl.events.ColorPickerEvent;
    var bg:Sprite = new Sprite();
    bg.graphics.beginFill(0x000000);
    bg.graphics.drawRect(0, 0, stage.stageWidth, stage.stageHeight);
    bg.graphics.endFill();
    addChild(bg);
    var colorPicker:ColorPicker = new ColorPicker();
    colorPicker.addEventListener(ColorPickerEvent.CHANGE, colorPicker_change);
    colorPicker.move(10, 10);
    addChild(colorPicker);
    function colorPicker_change(evt:ColorPickerEvent):void {
        bg.graphics.beginFill(evt.color);
        bg.graphics.drawRect(0, 0, stage.stageWidth, stage.stageHeight);
        bg.graphics.endFill();
    Granted, I they are changing colors differently, but I am not sure how to change the stage color any other way with this component.
    any thoughts out there?
    thanks
    babs

    Thanks kglad!!!
    that did it

  • Color Picker Doesn't Reflect selected Color

    >>In Fireworks CS4, the color picker doesn't reflect the color selected on canvas. <<
    How can there be a value in Fireworks.  When will this be fixed, cause lets face it, the world is about color?
    Bob

    Does your image have an adjustment layer or a layer mask
    on the layer that is active when using the color picker?
    If you have an adjustment layer, make another layer active
    and see what happens.
    If the layer that is active has a layer mask, click on image
    thumbnail to the left of the layer mask and try the color
    picker.
    MTSTUNER

  • Color Picker Doesn't Work

    I'm using PSE8 on a PC with Windows7 and something seems to be wrong with my color picker in the Editor.  I click on the Foreground icon (lower left of the screen), choose a color, click OK, and it doesn't change the color on the icon.  The default colors seem to be only black, white or gray.  I am in RGB color mode (under Image) and I have clicked Convert Color Profile to "Convert to Adobe RGB Profile" which is now grayed out.  Under Edit>Preferences>General, I have selected Adobe as the Color Picker.  Can anyone figure out why I am not getting the color I select for the Foreground color?   Thanks for any suggestions at all!

    Does your image have an adjustment layer or a layer mask
    on the layer that is active when using the color picker?
    If you have an adjustment layer, make another layer active
    and see what happens.
    If the layer that is active has a layer mask, click on image
    thumbnail to the left of the layer mask and try the color
    picker.
    MTSTUNER

  • IR color picker doesn't use IMAGE_PREFIX

    I have an application for which we changed the IMAGE_PREFIX from '/i/' to '/new_path/i/'.
    This required some changes in the proxy configuration and in the dads.conf. These are all good since the whole application is working fine, except for 1 thing.
    The popup color picker in the interactive report (available in highlighting menu) opens a new color picker in a popup window.
    The page is however still refering to the '/i/' directory and not to the '/new_path/i/'.
    (We deliberetaly block the '/i/' URLS on the proxy, only the '/new_path/i/' are allowed.)
    Is this a bug in APEX ? and if so is there a patch ?
    APEX version: 3.2.0.00.27
    Kind regards,
    Karel

    Does your image have an adjustment layer or a layer mask
    on the layer that is active when using the color picker?
    If you have an adjustment layer, make another layer active
    and see what happens.
    If the layer that is active has a layer mask, click on image
    thumbnail to the left of the layer mask and try the color
    picker.
    MTSTUNER

  • Color Picker won't change the color properly?

    Hi guys,
    I have a weird issue with the color. When I changed the color from dark green to bright lime green on Color Picker. The Color Picker show the specific color I want and then I click "OK". It did not change the dark green to bright lime green... instead it show the dull green color. It is really bugging me because I can't figured it what wrong with it. I checked the Color Mode (RGB mode) and Color Setting... everything seems to be right to me.
    Here is the quick screenshot:
    I also tested with other color, it still have the same problem. They won't show the bright color, it show the dull color instead.
    I hope you guys can help me out!
    Thanks,
    Christie

    OK, a few more thought on this.
    Here's what I did and everyone can check for themselves. I made a screen capture of the Color picker and paste it in a RGB and also a CMYK document as shown on the images below. In the CMYK document this converts the RGB color values of the screen capture into the CMYK color space of the document and the colors in the palette are displayed within the document's gamut. If you take the eyedropper and click on any color of the palette on the image you will never get out of gamut colors and this is how they should be displayed in the real Color Picker. The Color picker can still display in a little box out of gamut color if they are selected numerically using the RGB or HSB models but the point is that the display of the palette should be converted to a CMYK color space.
    In the RGB document on the second image, like in the real picker, clicking on the palette with the eyedropper will give a lot of out of gamut colors.
    Now thinking about out of gamut colors. Illustrator decides what is out of gamut colors by comparing the color space of a CMYK document to the working RGB  color space set in the Color Settings and for an RGB document to the  working CMYK space in the Color Settings. But this is not practical all the time because it is one way only from RGB to CMYK and can not be set from CMYK to RGB, RGB to RGB, and CMYK to CMYK.
    CMYK to RGB example: you may have a  document with U.S Web Coated (SWOP) v2 color space and one of its destinations is an sRGB color space. Because you can't set CMYK to RGB for out of gamut consideration, Illustrator will consider out of gamut all sRGB colors that are outside the U.S Web Coated (SWOP) v2 color space. But in this case your destination is sRGB and all colors from the sRGB color space should be presented in gamut and there is actually a small part of the U.S Web Coated (SWOP) v2 colors that are outside of the sRGB color space and only these colors should be shown as out of gamut.
    RGB to RGB example: your document is set in Adobe RGB color space because it will be eventually printed to several RGB printers some of which may have narrower gamut than the document. Then you want to set Illustrator to display out of gamut only the colors in the Adobe RGB color space that the RGB printer can't print, but unfortunately this is not possible even if you have the color profile of the printer.
    CMYK to CMYK example: you may have a  document with U.S Web Coated (SWOP) v2 color space but one of its destinations is U.S Web Uncoated v2, or US Newsprint, again not possible.
    So, in all these examples, the out of gamut colors Illustrator gives in the Color picker and panel are completely useless. Of course the major tool for these tasks remains the soft proofing which is working properly but why not make the out of gamut colors in the Color picker and panel work better and make more sense.

  • Photoshop HUD Color Picker

    I am using CS6 and I can't get the "Show Sampling Ring" to accept the check mark to make it active. I have an image up I am on the background layer and I have the Eye Dropper selected. I have tried the shortcut of alt + shift and right clicking and that doesn't work either. My video card is a NVIDIA and I thought I would try and update the drivers for that but I don't know how to do it for that card. I also am not sure if I should check or not check Use Graphics Processor under Preferrences which I tried both ways and it doesn't make any difference. Any help would be appreciated.

    65alias, what you're experiencing sounds like classical problems with drivers.
    Ensure you have updated your video driver, and if you don't have the latest tablet driver you'll want to remove it and install the latest from the Wacom web site (i.e., don't update it in place, specifically remove then install).
    -Noel

  • Lightroom 2.7 color picker doesn't work

    I have the new Lion OSX. I have Lightroom 2.7. I am having issues with the colour picker. It will not leave the colour palette and let me select from the image. I have tried holding down my mouse key, but it won't leave the palette. This is SOOOO frustrating! HELP ME!! LOL. This is in the adjustment brush... Thanks in advance!

    It's supposed to work like this: with the mouse cursor in the palette, hold down the mouse key and drag into the image.
    If you're doing that (and it sounds like you are), you may have hit upon a place where Lion and LR 2.7 aren't playing well together.
    You can download the 3.6 trial and see if your problem goes away. Adobe aren't likely to fix anything in 2.x.
    Hal

  • CS5 Color Picker HUD

    I have PS CS5 (version 12.0.4x32).  The Color PIcker HUD doesn't seem to work (shift-alt-right click).  The Enable OpenGL Drawing box is greyed out and there's a note that PS "Standard" not supported.  What's going on?  Do I have aversion of PS that doesn't support the Color HUD?  How do I find out if I have PS "Standard"  How can I fix this?

    At your suggestion, I went to Help > System Info, and here's everything that I found.  Note that OpenGL Drawing is now enabled (it was greyed out before but not anymore, I don't know why), but when I click "Advanced Settings" I find that Mode is set to "Basic" and it's greyed out (i.e. I can't change it).  The HUD color picker still does not work.  BTW, I'm very appreciative of the help and attention you're giving to this.  Thanks.
    Adobe Photoshop Version: 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch]) x32
    Operating System: Windows 7 64-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:10, Stepping:7 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2
    Physical processor count: 4
    Processor speed: 2491 MHz
    Built-in memory: 8086 MB
    Free memory: 5289 MB
    Memory available to Photoshop: 3255 MB
    Memory used by Photoshop: 60 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: False.
    OpenGL Crash File: Not Detected.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: Intel
    Video Card Renderer: Intel(R) HD Graphics Family
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 900, right: 1600
    Video Card Number: 1
    Video Card: Intel(R) HD Graphics Family
    Driver Version: 8.15.10.2455
    Driver Date: 20110719000000.000000-000
    Video Card Driver: igdumd64.dll,igd10umd64.dll,igd10umd64.dll,igdumdx32,igd10umd32,igd10umd32
    Video Mode: 1600 x 900 x 4294967296 colors
    Video Card Caption: Intel(R) HD Graphics Family
    Video Card Memory: -244 MB
    Serial number: 95478835891846414614
    Application folder: C:\Program Files (x86)\Adobe\Adobe Photoshop CS5\
    Temporary file path: C:\Users\G\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 911.9G, 762.2G free
    Primary Plug-ins folder: C:\Program Files (x86)\Adobe\Adobe Photoshop CS5\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2010/10/04-23:36:11   64.441628   64.441628
       adbeape.dll   Adobe APE 2010/02/23-12:40:58   61.421986   61.421986
       AdobeLinguistic.dll   Adobe Linguisitc Library   5.0.0  
       AdobeOwl.dll   Adobe Owl 2010/06/03-13:43:23   3.0.93   61.433187
       AdobeOwlCanvas.dll   Adobe Owl Canvas   3.0.68   61.2954
       AdobePDFL.dll   PDFL 2010/12/13-23:37:10   64.341419   64.341419
       AdobePIP.dll   Adobe Product Improvement Program   5.0.0.2021  
       AdobeXMP.dll   Adobe XMP Core   5.0   61.134777
       AdobeXMPFiles.dll   Adobe XMP Files   5.0   61.134777
       AdobeXMPScript.dll   Adobe XMP Script   5.0   61.134777
       adobe_caps.dll   Adobe CAPS   3,0,116,0  
       adobe_OOBE_Launcher.dll   Adobe OOBE Launcher   1.0.0.64 (BuildVersion: 1.0; BuildDate: Mon Jan 26 2010 21:49:00)   1.000000
       AFlame.dll   AFlame 2010/02/23-17:27:33   61.421976   61.421976
       AFlamingo.dll   AFlamingo 2010/02/23-17:27:33   61.421978   61.421978
       AGM.dll   AGM 2010/10/04-23:36:11   64.441628   64.441628
       ahclient.dll    AdobeHelp Dynamic Link Library   1,5,0,30  
       aif_core.dll   AIF   2.0   53.422628
       aif_ogl.dll   AIF   2.0   53.422628
       amtlib.dll   AMTLib   3.0.0.64 (BuildVersion: 3.0; BuildDate:  Mon Jan 26 2010 21:49:00)   1.000000
       amtservices.dll   AMTServices   3.0.0.64 (BuildVersion: 3.0; BuildDate:  Mon Jan 26 2010 21:49:00)   1.000000
       ARE.dll   ARE 2010/10/04-23:36:11   64.441628   64.441628
       asneu.dll    AsnEndUser Dynamic Link Library   1, 7, 0, 1  
       AXE8SharedExpat.dll   AXE8SharedExpat 2010/02/23-17:27:33   61.421978   61.421978
       AXEDOMCore.dll   AXEDOMCore 2010/02/23-17:27:33   61.421978   61.421978
       Bib.dll   BIB 2010/10/04-23:36:11   64.441628   64.441628
       BIBUtils.dll   BIBUtils 2010/10/04-23:36:11   64.441628   64.441628
       boost_threads.dll   DVA Product   5.0.0  
       cg.dll   NVIDIA Cg Runtime   2.0.0015  
       cgGL.dll   NVIDIA Cg Runtime   2.0.0015  
       CoolType.dll   CoolType 2010/10/04-23:36:11   64.441628   64.441628
       data_flow.dll   AIF   2.0   53.422628
       dvaadameve.dll   DVA Product   5.0.0  
       dvacore.dll   DVA Product   5.0.0  
       dvaui.dll   DVA Product   5.0.0  
       ExtendScript.dll   ExtendScript 2010/10/19-10:22:12   61.445301   61.445301
       FileInfo.dll   Adobe XMP FileInfo   5.0   61.134777
       filter_graph.dll   AIF   2.0   53.422628
       hydra_filters.dll   AIF   2.0   53.422628
       icucnv36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       icudt36.dll   International Components for Unicode 2009/06/17-13:21:03    Build gtlib_main.9896  
       image_compiler.dll   AIF   2.0   53.422628
       image_flow.dll   AIF   2.0   53.422628
       image_runtime.dll   AIF   2.0   53.422628
       JP2KLib.dll   JP2KLib 2010/12/13-23:37:10   64.181312   64.181312
       libeay32.dll   The OpenSSL Toolkit   0.9.8g  
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2, 0, 1, 11  
       MPS.dll   MPS 2010/12/13-23:37:10   64.450375   64.450375
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       msvcp71.dll   Microsoft® Visual Studio .NET   7.10.3077.0  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       msvcr71.dll   Microsoft® Visual Studio .NET   7.10.3052.4  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.6161  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS5   CS5  
       Plugin.dll   Adobe Photoshop CS5   CS5  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (32 bit)   2.0.0.746  
       PSArt.dll   Adobe Photoshop CS5   CS5  
       PSViews.dll   Adobe Photoshop CS5   CS5  
       SCCore.dll   ScCore 2010/10/19-10:22:12   61.445301   61.445301
       shfolder.dll   Microsoft(R) Windows (R) 2000 Operating System   5.50.4027.300  
       ssleay32.dll   The OpenSSL Toolkit   0.9.8g  
       tbb.dll   Threading Building Blocks   2, 1, 2009, 0201  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   1.0.0.68 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   1.0.0.68
       WRServices.dll   WRServices Thursday January 21 2010 12:13:3   Build 0.11423   0.11423
       wu3d.dll   U3D Writer   9.3.0.113  
    Installed plug-ins:
       Accented Edges 12.0
       ADM 3.11x01
       Angled Strokes 12.0
       Average 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Bas Relief 12.0
       BMP 12.0.2
       Camera Raw 6.7
       Chalk & Charcoal 12.0
       Charcoal 12.0
       Chrome 12.0
       Cineon 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Clouds 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Color Halftone 12.0.2
       Colored Pencil 12.0
       CompuServe GIF 12.0.2
       Conté Crayon 12.0
       Craquelure 12.0
       Crop and Straighten Photos 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Crop and Straighten Photos Filter 12.0.2
       Crosshatch 12.0
       Crystallize 12.0.2
       Cutout 12.0
       Dark Strokes 12.0
       De-Interlace 12.0.2
       Difference Clouds 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Diffuse Glow 12.0
       Displace 12.0.2
       Dry Brush 12.0
       Eazel Acquire 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Embed Watermark 4.0
       Extrude 12.0.2
       FastCore Routines 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Fibers 12.0.2
       Film Grain 12.0
       Filter Gallery 12.0
       Fresco 12.0
       Glass 12.0
       Glowing Edges 12.0
       Grain 12.0
       Graphic Pen 12.0
       Halftone Pattern 12.0
       HDRMergeUI 12.0
       IFF Format 12.0.2
       Ink Outlines 12.0
       JPEG 2000 2.0
       Lens Blur 12.0
       Lens Correction 12.0.2
       Lens Flare 12.0.2
       Lighting Effects 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Liquify 12.0.1
       Matlab Operation 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Measurement Core 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Mezzotint 12.0.2
       MMXCore Routines 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Mosaic Tiles 12.0
       Multiprocessor Support 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Neon Glow 12.0
       Note Paper 12.0
       NTSC Colors 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Ocean Ripple 12.0
       OpenEXR 12.0.2
       Paint Daubs 12.0
       Palette Knife 12.0
       Patchwork 12.0
       Paths to Illustrator 12.0.2
       PCX 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Photocopy 12.0
       Picture Package Filter 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Pinch 12.0.2
       Pixar 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Pixel Bender Gallery 12.0
       Plaster 12.0
       Plastic Wrap 12.0
       PNG 12.0.2
       Pointillize 12.0.2
       Polar Coordinates 12.0.2
       Portable Bit Map 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Poster Edges 12.0
       Radial Blur 12.0.2
       Radiance 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Read Watermark 4.0
       Reticulation 12.0
       Ripple 12.0.2
       Rough Pastels 12.0
       Save for Web & Devices 12.0
       ScriptingSupport 12.0.4
       Send Video Preview to Device 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Shear 12.0.2
       Smart Blur 12.0.2
       Smudge Stick 12.0
       Solarize 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Spatter 12.0
       Spherize 12.0.2
       Sponge 12.0
       Sprayed Strokes 12.0
       Stained Glass 12.0
       Stamp 12.0
       Sumi-e 12.0
       Targa 12.0.2
       Texturizer 12.0
       Tiles 12.0.2
       Topaz photoFXlab 10.0
       Topaz Simplify 4 10.0
       Torn Edges 12.0
       Twirl 12.0.2
       Underpainting 12.0
       Vanishing Point 12.0
       Variations 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Video Preview 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Water Paper 12.0
       Watercolor 12.0
       Wave 12.0.2
       WIA Support 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       Wind 12.0.2
       Wireless Bitmap 12.0.4 (12.0.4x20110407 [20110407.r.1265 2011/04/07:02:00:00 cutoff; r branch])
       ZigZag 12.0.2
    Plug-ins that failed to load: NONE
    Flash:
       Flash
       Mini Bridge
       Access CS Live
       CS News and Resources
       Flash
       Kuler
       CS Review
    Installed TWAIN devices: NONE

  • CS5 Color Picker HUD Problem

    Shift-Alt-Right Click-Drag doesn't bring up the Color Picker HUD.  Someone suggested making sure "Enabale OpenGL Drawing" box is checked, but tis greyed out (says that Photoshop Standard" not supported).  Is this the problem?  What is Photoshop "Standard" and how do I find out if I have it?

    Good day!
    What is Photoshop "Standard" and how do I find out if I have it?
    Photoshop CS5 can be licensed as Extended or Standard; in Standard several features are deactivated, but I don’t think the HUD Color Picker is one of those.
    Check out Photoshop > About Photoshop to see if you have Photoshop Extended.
    Someone suggested making sure "Enabale OpenGL Drawing" box is checked, but tis greyed out
    What is your GPU?
    If it is not on this list it may be too »old« to provide OpenGL.
    http://helpx.adobe.com/photoshop/kb/tested-video-cards-photoshop-cs5.html
    Regards,
    Pfaffenbichler

  • Can I pop out the color picker in Photoshop CS6?

    Hey everyone,
    I am doing digital painting in Photoshop CS6, and would love it if I could keep my color picker open in a separate window. Does anyone know how to do this? I've seen an artist named Feng Zu do this in a painting tutorial video, but he doesn't explain how.
    Thanks!

    You can also get to a HUD (Heads Up Display) version of the Color Picker by holding down the Control+Option+Command keys on a Mac (Alt+Shift+Right Click on a PC, I believe)
    But I personally find the HUD color picker unintuitive and problematic.
    If you find a way to keep a floating Color Picker window, post back. That could be convenient.

Maybe you are looking for

  • Printer 'offline' when actually not on wireless connection laptop

    I have an Officejet Pro L7590, connected via a wired connection to my Linksys router. My laptop runs Windows 7 32-bit Home Premium and is wireless connected to my router. When I double-click the printer in 'Devices and Printers'. It shows 'printer of

  • Oracle SID & SERVICE_NAME

    What is the difference between Oracle SID & SERVICE_NAME ? and which one is better to use in tnsnames.ora and why ?

  • The best tool to prepare the IFRS financial statements

    has anybody implemented IFRS compliant consolidated financial statements using BPC rather than BCS? what was the decisive factor to move to BPC and not to implemement the BCS? i've been trying to get my hands around a consolidation package, but short

  • Here's a good stumper. Any ideas? Java BUG?

    public class Test {     //A static value we will set later -- this is legal     static final int INT_VALUE;     static {         //try to set the value..         //note that an exception *could* be thrown BEFORE the value is set         try {        

  • Please help with canon scaner driver

    i'm trying to install my scaner but the drver seems to nor work (not universal)... so i try to downloand a newer version from canon. but the downloads for mac are .bin format ... at the end a have just a with page that any app. recognize. please help