Can't use mouse to select colors in color picker

When I am in the Color Picker pallet and using my mouse, I can not select colors from the field or use the verticle slider bar. I can use my up/down arrows to move the little round circle, which then changes the RGB numbers. I'm in Photoshop CS2 in Windows. I tried a new document and also restarted but its still not working. Help!

Which "Windows"? There are so many of them and if this is Win 7 vs. your old CS 2, any number of things could be going on from issues with graphics drivers to specifics in the way windows are handled in W7... In any case, as a minor try a different visual theme nad make sure your graphics card configuration and driver aree suitable...
Mylenium

Similar Messages

  • Is it possible to delete a plot with using mouse to select it on the graph control?

    For example, when I use PlotLine to plot thousands of lines on the graph control, I want to delete some of them, but there is thousands of plotHandle generated.
    How can I get the plotHandle of the specific line on the graph control with using mouse to select it?
    If I record information of the lines, ex. the plotHandle and the coordinates, on a table or list, etc. , I have to compare the information of lines to get the plotHandle of the specific line.
    Is there any user-friendly way to delete a plot by select it on the graph control?
    Solved!
    Go to Solution.

    Sure! Look at the example located in \samples\userint\graphcursors for an example of how to accomplish this task.
    Briefly:
    The cursor must be in "Snap to point" mode
    (To be confirmed) The graph must be in "Retain" data mode
    You must have a callback for the graph control
    You can use GetGraphCursorIndex to retrieve the plot handle
    GetGrpahCursor retrieves values of cursor position in engineering units
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Why I Can't use procedure in select statement

    Why I Can't use procedure in select statement

    We can use function in select statement but we couldn't use procedure with one out parameters in select statement... You can use Function because they are designed for this but procedure are not. Functions can return value (without OUT parameter) which can be used in SELECT whereas procedures do not have such concept. As you can see in the above post you can not call even functions also if it has any out parameter.
    I have just trying to use procedure in select statement ..for this I require technical answer..The technical answer is because conceptually procedure is for doing set of operation, performning DMLs on the tables , whereas functions are for processing and producing a single result. Functions are basically for not using INSERT/UPDATE/DELETE in it. That is the reason they are allowed to be used in SELECT because conceptually they are not supposed to do any data changes.
    Regards,
    Avinash

  • Can not use 'AT LINE-SELECTION' with SET PF-STATUS

    Hi experts,
    my code is like below:
    PARAMATERS: .....
    SET PF-STATUS 'st_nam'.
    Perform Load_data . ' For list display
    START-OF-SELECTION.
    AT LINE-SELECTION.
      Perform list_detail.
    AT USER-COMMAND.
      CALL SCREEN '1001'.
    END-OF-SELECTION.
    When I execute the report , the basic was displayed , but when then i double click on the list to call the next screen '1001'. It did not work , but if i omit the SET PF-STATUS m AT LINE-SELECTION worked week , so in this case what has happened i how can i solve this problem,
    Thaks,
    PS: Reward immediately

    Hi,
    Thank you very much for your helpful answers, I have copied the report downto my system and test it , When i used SET PF-STATUS , i can not use AT LINE-SELECTION to capture events ...May be we can not use these 2 statements in parallel,...:D
    Thanks,

  • How many columns can be used in the SELECT Statment

    Hi all,
    How many columns can be used in the SELECT statement?
    Ex: SELECT x1,x2,....xn FROM <table_name>;
    Thanks,
    GowriShankar.N

    Let me join ;-)
    SQL> select * from v$version;
    BANNER
    Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production
    PL/SQL Release 9.2.0.6.0 - Production
    CORE    9.2.0.6.0       Production
    TNS for Linux: Version 9.2.0.6.0 - Production
    NLSRTL Version 9.2.0.6.0 - Production
    SQL> DECLARE
      2  l_sql varchar2(32000);
      3  begin
      4  l_sql := 'CREATE TABLE T(';
      5  for i in 1..999 loop
      6  l_sql := l_sql ||'C'||i||' NUMBER,
      7  ';
      8  end loop;
      9  l_sql := l_sql||'C1000 NUMBER)';
    10  EXECUTE IMMEDIATE l_sql;
    11  end;
    12  /
    PL/SQL procedure successfully completed.
    SQL> select count(*) from cols where table_name = 'T';
      COUNT(*)
          1000
    SQL> insert into t(c1) values(1);
    1 row created.
    SQL> select *
      2  from t t1,t t2;
            C1         C2         C3         C4         C5         C6         C7         C8         C9       
    ...   snipped
    C991        C992       C993       C994       C995       C996       C997       C998       C999         C1         C2         C3       C4         C5         C6         C7         C8         C9        C10       
    ...   snipped
    C990       C991       C992       C993    C994        C995       C996       C997       C998       C999
    ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ---------- ----------          1
                                                                                                                                        1
    SQL>
    SQL> select count(*) from (
      2  select * from t t1,t t2)
      3  ;
    select * from t t1,t t2)
    ERROR at line 2:
    ORA-01792: maximum number of columns in a table or view is 1000Obviously, inline view is obliged the same restrictions as a view, but select list is not constrained.
    Best regards
    Maxim

  • HT5824 Can I use only one (selected) folder from my documents in iCloud?

    Can I use only one (selected) folder from my documents in iCloud for MAC and PC?

    If the folders were created in the Photos app on the iPad, they don't really contain copies of the photos. They contain pointers to those photos that allow them to appear in the albums that you create. Consequently, they cannot be imported to the computer. Those albums are for local organization on the iPad only And cannot be imported.
    You should be able to select the indicidual phots that you want to import, as far as I know. I can do it on a Mac using iPhoto or Image Capture, so I assume that Windows will allow you to pick and choose which photos you want to import.
    Import photos and videos from your iPhone, iPad, or iPod touch to your Mac or Windows PC - Apple Support

  • What can be used for replacing SELECT SINGLE *   ?

    What can be used for replacing SELECT SINGLE *  for improving the performance in the following statements?
    SELECT SINGLE * FROM REGUV
       WHERE LAUFD = G_WLAUFD "RUN DATE ,SY-DATUM
         AND LAUFI = P_LAUFI.  "IDENTICATION NO
    SELECT SINGLE * FROM T100
       INTO CORRESPONDING FIELDS OF G_T100_WA
        WHERE SPRSL = G_T_IALLMESS-MSGSPRA
          AND ARBGB = G_T_IALLMESS-MSGID
          AND MSGNR = G_T_IALLMESS-MSGNR.
    SELECT SINGLE * FROM TBTCO
       INTO CORRESPONDING FIELDS OF TBTCO
        WHERE JOBNAME = FS_JOBNAME.

    If you need all the fields and you know that only one record exists then u need to use select single * only. You can improve the performance by specifying key fields in the where clause of select statements. If the structure of the work area or internal table in which you are fetching the data is same as that of the database table then no need to use corresponding fields clause.
    Best Regards,
    Vibha
    *Please mark all the helpful answers

  • Can't use "Clip" on selection in timeline?

    I'm not sure what keys I hit, but suddenly I am unable to perform any options under the "Clip" menu whenever I have part of a clip selected in the timeline. If I select the whole clip, the options become available. But part of a clip? Nothing. Everything is greyed out.
    Further, the mouse pointer now has this extra gold box under the arrow. I thought I had accidentally selected the "Range Selection" pointer, so I pressed A on my keyboard to choose the "Select" pointer, but the gold box remains, and I can't use any Clip menu items (this also prevents me from right-clicking on the selection as well). See screenshot below.
    I'm sure it's an easy fix, but I searched

    After selecting the clip you use range tool to select the portion of clip you want to have 'clip menu workable'. Copy this portion of clip and add it to the end of the timeline. Bring that copied part of the clip and place it atop the 'mother clip' from where you had copied this bit. Now you can select this clip and find it to be 'clip menu workable'.
    The selected clip at the end of the timeline has been copied and pasted there from the 'mother clip' to the left on the primary storyline. You can now drag this last clip and place it atop the 'mother clip':
    Now this portion of clip has become 'clip menu workable'.
    BTW your screenshot cannot be viewed by me either in Safari or Google. Wonder why?

  • How can i use index in select query.. facing problem with the select query.

    Hi Friends,
    I am facing a serious problem in one of the select query. It is taking a lot of time to fetch data in Production Scenario.
    Here is the query:
      SELECT * APPENDING CORRESPONDING FIELDS OF TABLE tbl_summary
        FROM ztftelat LEFT JOIN ztfzberep
         ON  ztfzberep~gjahr = st_input-gjahr
         AND ztfzberep~poper = st_input-poper
         AND ztfzberepcntr  = ztftelatrprctr
        WHERE rldnr  = c_telstra_accounting
          AND rrcty  = c_actual
          AND rvers  = c_ver_001
          AND rbukrs = st_input-bukrs
          AND racct  = st_input-saknr
          AND ryear  = st_input-gjahr
          And rzzlstar in r_lstar                            
          AND rpmax  = c_max_period.
    There are 5 indices present for Table ZTFTELAT.
    Indices of ZTFTELAT:
      Name   Description                                               
      0        Primary key( RCLNT,RLDNR,RRCTY,RVERS,RYEAR,ROBJNR,SOBJNR,RTCUR,RUNIT,DRCRK,RPMAX)                                          
      005    Profit (RCLNT,RPRCTR)
      1        Ledger, company code, account (RLDNR,RBUKRS, RACCT)                                
      2        Ledger, company code, cost center (RLDNR, RBUKRS,RCNTR)                           
      3        Account, cost center (RACCT,RCNTR)                                        
      4        RCLNT/RLDNR/RRCTY/RVERS/RYEAR/RZZAUFNR                        
      Z01    Activity Type, Account (RZZLSTAR,RACCT)                                        
      Z02    RYEAR-RBUKRS- RZZZBER-RLDNR       
    Can anyone help me out why it is taking so much time and how we can reduce it ? and also tell me if I want to use index number 1 then how can I use?
    Thanks in advance.

    Hi Shiva,
    I am using two more select queries with the same manner ....
    here are the other two select query :
    ***************1************************
    SELECT * APPENDING CORRESPONDING FIELDS OF TABLE tbl_summary
        FROM ztftelpt LEFT JOIN ztfzberep
         ON  ztfzberep~gjahr = st_input-gjahr
         AND ztfzberep~poper = st_input-poper
         AND ztfzberepcntr  = ztftelptrprctr
        WHERE rldnr  = c_telstra_projects
          AND rrcty  = c_actual
          AND rvers  = c_ver_001
          AND rbukrs = st_input-bukrs
          AND racct  = st_input-saknr
          AND ryear  = st_input-gjahr
          and rzzlstar in r_lstar             
          AND rpmax  = c_max_period.
    and the second one is
    *************************2************************
      SELECT * APPENDING CORRESPONDING FIELDS OF TABLE tbl_summary
        FROM ztftelnt LEFT JOIN ztfzberep
         ON  ztfzberep~gjahr = st_input-gjahr
         AND ztfzberep~poper = st_input-poper
         AND ztfzberepcntr  = ztftelntrprctr
        WHERE rldnr  = c_telstra_networks
          AND rrcty  = c_actual
          AND rvers  = c_ver_001
          AND rbukrs = st_input-bukrs
          AND racct  = st_input-saknr
          AND ryear  = st_input-gjahr
          and rzzlstar in r_lstar                              
          AND rpmax  = c_max_period.
    for both the above table program is taking very less time .... although both the table used in above queries have similar amount of data. And i can not remove the APPENDING CORRESPONDING. because i have to append the data after fetching from the tables.  if i will not use it will delete all the data fetched earlier.
    Thanks on advanced......
    Sourabh

  • SCCM 2012 Remote Control - Can't use Mouse

    Not sure if there's a setting somewhere or what but this is strange.
    When I'm in SCCM and I right Click a PC and choose Start / Remote Control, everything works fine while I'm logging in.  I can click in the Username and password fields, click OK to our disclaimer, etc.
    However, once I get logged in, the mouse stops functioning and I can only use the keyboard.  I can't click to open programs, close programs, or anything else.
    Anyone experienced this before and have any idea what the cause might be?
    Thanks.

    Hi,
    Have you tried to Remote Control on another client? Still same issue?
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Can I use mouse side buttons for pageup/pagedown like in previous version?

    In firefox 3.x I use mouse side buttons for pageup/pagedown. When I install new version I found that this buttons is used for back/forward page. Can I somehow change that?

    [[How do I customize the toolbars?]] should help you out

  • Can't use mouse nor keyboard after booting OS X 10.6.1

    Hi,
    I just did a new installation of Snow Leopard incl. the update (10.6.1) and now I'm observing a strange behavior. After the OS X is booting I can move the mouse pointer but I can't click on anything and the keyboard doesn't react neither. After 1 or 2 minutes everything is working fine.
    Does anybody has an idea what the problem could be?
    Thanks!

    Hi Brigga
    My MBP suffers from something similar now and then, whereby I am unable to resize a Finder window (or QuickLook 'window') by dragging bottom right-hand corner.
    A Relaunch of Finder fixes it, but somewhat annoying.
    Regards
    C.

  • Can't use mouse cursor to select windows buttons from XFCE panel

    The problem is weird but the behaviour is as follow: let say I have sultiple copies of the same software (Firefox, for instance) or when the software has multiple windows (for example Pidgin main windows and its other chat windows). Wwhen I try to click on the windows button on the panel in order to navigate to the window of such software, it won't work. nothing would happen. On the other hand, Alt+Tab works for switching to the desired windows. However, if the software only has one window running (for example, only one Firefox window) then the mouse click would work.
    It's a strange behaviour and I got this on both my PC which runs Arch 64 bit and my laptops with Arch.
    Anyone has the same problem?

    Inxsible wrote:Do you have conky running -- maybe that's covering the panel and eating up the mouse click events. Try killing conky and see if it works.
    Nope, thx Inxsible but conky's not running here.
    Right-click menu (minimize, maximize, etc...) works for each of the multiple entries, though.
    I just tried recompiling xfce4-panel 4.8.2-1 with no apparent error message or any change in behaviour... hm...
    [Edit] It seems like a bug's already been filed: http://bugzilla.xfce.org/show_bug.cgi?id=7383
    Last edited by gnidam (2011-03-09 17:40:46)

  • HELP!!! new iMac. screen shifts side to side and i can't use mouse when this happens.

    i bought this imac back in january and have had nothing but problems since then with it. first my OS (lion 10.7.4) crashed or some **** where i got extremely slow and would give me the colored wheel of death so i take it to worst but where i bought it and they say its a corupt hard drive so its sent out. get it back, they say it whats the os system so they re-boot the os on to it. mean while i was having the same problem ive have from the beginning which was the screen would shake side to side when ever i would be doing something and the mouse locks up and i would have to wait for it to stop. this is VERY ANOYING!!! i took it to apple and they ran a series of stress tests on it and they couldnt even get it to produce it once while they had it. so now its STILL doing it!  can anyone please help me. im ready to go to apple and demand a new computer or punch someone in the face...

    I'm speaking from experience.
    You're using a wireless Magic Mouse right?  Yeah, thought so. 
    I first noticed the problem on Lion (10.7.5) but that was also the time my Mighty Mouse or whatever that thing was called crapped out and I upgraded to the Magic Mouse.  I always thought the problem was with the OS.  My system is not supported by Mountain Lion (late 2006 model, the white one) so I did a system reinstall and stil had the issue.  Being stupid, I still attributed it to the OS but had my doubts about the mouse with all the silly swipes here and there and everywhere.  Until today.  I said enough of this garbage and switched off the mouse and plugged in a beat up wired Logitech.  Going on 4 hours now and not one screen shake.
    The "iMac screen shake".  Not very well documented.  But **** if that isn't one frustrating mofo.  Seriously, how did I use this thing for many moons with the screen shaking every 3-5 minutes.  ***??   And by the way, to stop the screen from shaking while it's doing it, madly swipe back and forth on the magic mouse shell to take control back.  Man, I'm getting upset just thinking about this problem.  And the waste of $70 for the mouse.
    And for what it's worth, I bought an iMac (2010) for my folks and I've noticed the problem on their machine too.  Yep, Magic Mouse.

  • Can't use mouse in track header/mixer area... gulp?

    It seems I've inadvertently locked myself out of being able to edit/manage tracks in the header area-- anyone experience this problem? I can use keyboard shortcuts with no problem, and the cursor works in the bottom window, but anything from selecting a track to controlling track volume in the header is useless-- just doesn't respond. Anyone seen this before?
    Thanks!

    If you want to see the strategy status on the legend I think you should probably structure your table like the following:
    Sub Focus Area       Status              Strategy Count
    ===========      =========     ========
    Sub Focus Area 1    Implemented       23
    Sub Focus Area 1    In Progress           5
    Sub Focus Area 1    Not Started           3
    Sub Focus Area 2    Implemented       28
    Then the status will show up as a column that you should be able to drag into the legend area.
    http://darren.gosbell.com - please mark correct answers

Maybe you are looking for

  • Help with Oracle Database XE edition tutorial

    Hi, I am a student and our instructor has told us to install 11g and now has us running through the 10g tutorial and I've run into a number of problems. There is one issue that I cannot find the solution for and was hoping that somebody could give me

  • JavaScript Error : Can't move focus to the control because it is invisible,

    I have one JSP page in my project where i am putting all input to save personal details of a person. This personal details header contains button(to collapse or expand). I input all details and save. It works fine but when i collapse the header and n

  • Add new columns in result of Transaction ME2L

    Hello, My requirement is to add two fields from table EKPO (BEDNR and AFNAM) in the result of ME2L. Does anyone know how to proceed? Is there an exit which will enable me to do so? Thanks a lot for your help.

  • Could not initialize the Java virtual machine. Program will exit

    Hi! I am trying to install jdk-1_5 using jdk-1_5_0_06-windows-i586-p.exe. The entire installation runs fine till the end when we get the following error message. *"could not initialize the Java virtual machine. Program will exit"* Any idea as to what

  • External Image and Text

    hi, I need to load an external image and resize it and load also external text down of image. swi files should be fantastic reponse for me thanks in advise asap