Selecting multiple colors in color wheel?

If i select an object with multiple colors then go into the color wheel/color guide the colors are connected so you can spin them and they stay relative and so on, but is there a way to select more than one color handle so you can move them at the same time, say if you wanted to take a few and make them lighter or darker? I know there are hue/sat plug ins that might work for this, but I thought i'd check with the adobe community first. Thanks!

Not on the wheel, but you can change the sliders below in the Recolor Artwork dialog box.

Similar Messages

  • Rules applied to multiple cells trigger color changes when any of the cells

    "Rules applied to multiple cells trigger color changes when any of the cells meet the rule’s condition." That's what Help says, but when I follow the directions, it doesn't work. This is in Numbers 08.
    I have a table where the contents of one column are either "YES" or "NO", depending on formulas using variables from other cells. If YES, I want the fill of that cell and that of two adjacent cells to change from white to green. I select all three cells and use conditional format rules for "text contains:" YES, then choose my fill color. When I return to the table and introduce values for the variables that trigger the rule, only the cell in the YES/NO column changes to green; the other two remain white.
    While I am spreadsheet challenged, I usually can follow directions as plain as those in Help, but it's not working. I couldn't find anything in the discussions after an hour of searching. Is this a known problem or am I just stupid?

    For what it's worth, that's the way I read that line in the User Guide as well. What it actually appears to mean, though is 'Rules applied to multiple cells apply independently to each of the cells."
    Here's a workaround for your three adjacent columns. Long, but fairly simple steps.
    Add a second table to the sheet (Table 2).
    Resize the second table to one column wide and as many rows as you want to apply the conditional format to.
    Set the width of the column to the same width as the three columns you want to highlight, and the row height(s) to match the rows.
    Format to table to have NO Header or Footer row or column.
    Use the Wrap Inspector to uncheck "Object causes wrap"
    In the first top cell of Table 2, enter an = sign, then Click on Table 1 in the sidebar, Click on the first cell that will hold YES or NO.
    Fill the formula down the rest of Table 2.
    With all cells in Table 2 selected, use the Cell Format inspector to set the 'text contains yes' rule and the conditional fill colour for these cells.
    Test the conditional formating by introducing values into Table 1.
    Click on Table 1 in the sidebar, then use the Table inspector to set Cell Fill to 'none'.
    Click on Table 2 in the sidebar, then drag that table onto table 1 aligning it to cover the cells in which the conditional formating is to appear.
    When positioned (and still selected), go to the Arrange menu and Send Backward to move Table 2 behind the (transparent) cells in Table 1.
    With Table 2 still selected, click on the Cell Borders color well and set the Opacity of the borders to 0%.
    Click the Text inspector and set the Text colour Opacity for Table 2 to 0%.
    Regards,
    Barry

  • Select list based on color

    Hi there
    I need to create a static select list in a tabular form with the following values: Red, Amber, Green.
    However, instead of the color names, the user wants to see the actual colors in the the select list (changing background color for each option), so it is easy to spot the problematic ones (Red). Is this possible to be done using Apex 3?
    Thanks
    Luis

    Luis et al.
    Thanks for posting code to this forum, it has been a great help. I must admit that I know nothing about javascript (close enough to nothing) but through the great posts here I have been able to get the first part working and my list values change color when the page loads. However, when I use the select list I don't know how to implement the code Luis posted to change the background color in the select lists. Any further direction would be a great help.
    I have the example page here:
    http://apex.oracle.com/pls/otn/f?p=37008:18
    and this is the code I used so far in the HTML HEADER on the page:
    <script type="text/javascript">
    function setAll()
    obj=document.forms[0];
    len=obj.elements.length;
    for (i=0;i<len;i++){
    if (obj.elements.name=="f04")
    setColor(obj.elements[i]); }
    function setColor(sel)
    var obj=sel;
    if (obj.value=='GREEN')
    obj.style.backgroundColor= "green";
    if (obj.value=='YELLOW')
    obj.style.backgroundColor= "yellow";
    if (obj.value=='RED')
    obj.style.backgroundColor= "red";
    if (obj.value=='WHITE')
    obj.style.backgroundColor= "white";
    </script>
    Thanks again,
    Dave

  • Auto select hex number via color picker

    Hey everyone,
    Why is it that on some versions of cs6 when i select the "set foreground color" (or background), the color dialog pops up with the hex number selected allowing me to quickly ctrl+c it. However, on other computers - with the exact same copy of photoshop (cloud based and fully updated) it does *not* auto select the hex number. I've looked through the settings to see if this is a feature that needs to be turned on/off but could not find it....
    Any one have any idea on how i could turn this on for all my workstations?

    In the case of the CS6 Mac edition, auto selection of the Hex field was implemented in the 13.1/13.02 Retina updates. Check Photoshop CS6 on the problem workstations to be sure they are updated.
    On Windows versions of CS6,be sure to single-click on the foreground swatch. Double-clicking it removes the Hex selection.
    That's about all I can think of, so if this doesn't help...I'll leave this to more experienced users, MVPs, and Staff.
    Gene

  • Why when I select a bright/rich color it wont let me and is instead a very dull version of that colo

    why when I select a bright/rich color it wont let me and is instead a very dull version of that color? Why can't I select a color and get exactly what I picked?
    WTF!!!!!!!!!!!!!!!!!!!!!!SOMEONE EXPLAIN THIS!!!!!!!!!!!!!!!!!!!!!!!!!

    Check your document color mode and the mode of the color picker as well as your color managemnt settings. You can't print certain colors in CMYK and AI is correctly adjusting gamut based on your settings on that assumption. Work in RGB if you need "pure" colors.
    Mylenium

  • Selectable mx:Label background color property

    How can I change background color of selected text in my mx:Label when selectable=true.  Default color is blue.
    thanks in advance

    Hi,
    I think you should use something else for this use instead of Label.That will be better.
    But if you want to do this with Label only then the solution is as below.
    Create you own Label class which extends Label class of flex.And then use as I hv used it in my application.Below is the source
    code for both.
    CustomLabel.as
    package
        import mx.controls.Label;
        public class CustomLabel extends Label
            public function CustomLabel()
                super();
            public function getTxt() : *
                return textField;
    MainApplication
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
            layout="vertical"
            xmlns:local="*">
        <mx:Script>
            <![CDATA[
                private function onCreationComplete():void
                    customLabel.getTxt().background = true;
                    customLabel.getTxt().backgroundColor = '0xFFFF00';
            ]]>
        </mx:Script>
        <local:CustomLabel id="customLabel" text="Hello world" selectable="true" creationComplete="onCreationComplete()"/>
    </mx:Application>
    Let me know if u hv any issue.
    with Regards,
    Shardul Singh Bartwal

  • Selecting files of same color label in Applescript

    I am trying to write a script that will move files to a new folder based on the color label of the files.  So basically I want all files with a Red label to go to one folder, all Orange label files to go to a different folder etc.  I am having a problem figuring out how to select files by their color label.  I want this to be automated and not require any user input.  I have searched forums and even bought a couple books on Applescript but haven't been able to find my answer.
    Any information would be very helpful,
    Thanks
    Charles

    racinrandall wrote:
    However when I move the files to the remote folders, the original file is still in the original folder.
    The move command does the same thing as drag and drop
    Drag a file and drop it in another partition copy the file, you must press the Command key to move the file.
    But there is no command in the AppleScript Finder Dictionary to do this.
    First solution : the mv command in a do shell script :
    tell application "Finder"
          my moveFiles((files in folder "myfolder" whose label index is 1) as alias list, folder orangeFolder)
          my moveFiles((files in folder "myfolder" whose label index is 2) as alias list, folder anotherFolder)
    end tell
    on moveFiles(tFiles, destFolder)
          set tDir to quoted form of POSIX path of (destFolder as string)
          repeat with i in tFiles
                do shell script "/bin/mv -n " & (quoted form of POSIX path of i) & " " & tDir
          end repeat
    end moveFiles
    -- the -n option after /bin/mv equal  (Do not overwrite an existing file and the original file will not be moved)
    -- use -f option to replace an existing file
    Second solution : copy, delete and empty the trash
    tell application "Finder"
          with timeout of 0 seconds
                set orangeFiles to files in folder "myfolder" whose label index is 1
                if orangeFiles is not {} then
                      duplicate orangeFiles to folder orangeFolder without replacing -- or with replacing
                      delete orangeFiles -- move files to trash
                      empty the trash
                end if
          end timeout
    end tell

  • How to select multiple items in ListView?

    Is it possible to select multiple items (rows) in ListView? I'm able
    to select only one item at a time.
    I'm running Forte 30F2 on Windows NT 4.0.
    Thanks in advance,
    Ramarao
    Get Your Private, Free Email at http://www.hotmail.com

    Ramarao,
    I talked to Forte support about this recently and they had nothing but
    bad news.
    They said that you cannot select multiple rows in a listview, and that
    this is a
    feature that will be in the next release ( release 4 ).
    I then asked if it was possible for me to highlight a row manually ( and
    do the multiple
    select myself ), and they said that also wasn't possible. This is due
    to the fact that
    there are no displaynode properties that effect display attributes (
    like font or color ).
    They suggested that I try changing the smallicon to show rows that have
    been 'selected'.
    In other words, when you ctrl-click on any particular row, you could put
    an icon at the
    beginning of a row that shows that this row has been clicked on.
    I'm still working on this myself, so I will keep you posted.
    Jeff Pickett
    From: Ramarao P[SMTP:[email protected]]
    Reply To: Ramarao P
    Sent: Tuesday, March 24, 1998 6:22 PM
    To: [email protected]
    Subject: How to select multiple items in ListView?
    Is it possible to select multiple items (rows) in ListView? I'm able
    to select only one item at a time.
    I'm running Forte 30F2 on Windows NT 4.0.
    Thanks in advance,
    Ramarao
    Get Your Private, Free Email at http://www.hotmail.com

  • Selecting multiple objects with Direct Select tool

    I'm working in InDesign CS4 on a pc and am having trouble with the Direct select tool. I go through my document selecting multiple objects, change the color of the selected boxes only to find that about half of my objects have "deselected" themselves. Has anyone else had this problem? Or does anyone have a fix I could try? Thanks!

    I know, I was pretty vague.
    Are you continuing to hold the shift key with each addition? Yes
    Are you trying to selct things on more than one spread? No
    Are you being careful to click inside each object other than an image and on the frame for an image? Yes

  • Select Multiple refinements of a facet at a time

    Hi,
    Could anyone suggest me to implement selecting multiple refinements of a facet at a time( it should be function as OR). In documentation, i see it is buit in functionality in ATG 9 version with PIPE symbol ( eg Blue |Green) . But i am using ATG 2007.3.
    Thank you
    -kranthi

    hi Jhansi,
    thank you very much for your response.
    nevertheless, this is not what I wanted to do (perhaps I should explain better).
    In fact, what I want is is to do as if I clicked on every single line of my table, but in one time (without cliking on them one by one...)
    I do not want to short them with color, I reall want to select every one of them, but in one time.
    thanks a lot
    regards,
    pierre

  • You SHOULD be able to apply batch changes just by selecting multiple images

    Don't get me wrong, i love lift/stamp. It's very helpful.
    BUT, I really hate the fact that in Aperture you can't just drag-select a group of images and then either apply adjustments to all of them, or –more often– keywords.
    Why does Aperture keep you from doing this?
    At the very least, you should have the OPTION in PREFS to do this. Or not.

    I'm sorry you are having difficulty.
    It's simple: you select multiple images, right?. One has a thick white border and the others have thin ones. But, even though you have multiple images selected, if you input keywords, or other metadata, or an adjustment from the Inspector, it only applies to the "primary" image.
    There should be an option to have that be the case... OR, if you want, to apply whatever adjustment from the INSPECTOR you choose... and have that be applied to those multiple images.
    "...why would anyone be likely to want to see each single adjustment step applied to a large number of images before settling on the preferred combination?"
    Because everyone's not you.
    I just shot 100+ table tops that were VERY similar lighting / angles / etc. And I needed to comp them out for the client ASAP. The technique I described would've saved me a lot of time. Instead I had to do ONE image of the mini-batches, and then lift/stamp the rest. When it would've been so much easier for me to drag-select the 8, or 15 in a group, and assign them all keywords at the same time, and do some adjustments. Bam. Quicker.
    Oh, and per the "what is the universe" question? You don't have to look any further than Apple's own operating system to see this "crazy" and "unique" technique in action: go to FINDER, select multiple items of folder (drag around them), and then CTRL-Click and choose a label color. Viola! ALL the items become that color.
    Like I said, I'm only suggesting Apple provide the OPTION of working this way. And it IS the norm in most operating system / program environments.
    In fact, watch the Lynda.com vid on Aperture 3: the MetaData portion, the guy drag-selects a bunch of images and says "...now, you'd THINK you could just enter some keywords for these similar images and have them stick... you'd be wrong. You have to use lift/stamp for that. For some odd reason."

  • Selecting multiple objects in Pages '09

    Hi everybody,
    I was just wondering how to easily select multiple objects in Pages, as in Keynote. I mean, in Keynote you can just drag the mouse over the objects you want to select, and that's it. But in Pages I haven't be able to do that (not even with option or command keys), so I have to press shift and click on every object I want to select. This is quite tedious when you want to select many objects.
    Any help on that?
    Thanks,
    Rodrigo

    Thanks to both, I already sent my feedback to Apple, and I really hope that iWork X comes out soon, with more wonderful features.
    I have tried fruhulda's advice and it works, my thanks for that! My question now is: Why Apple doesn't provide any help on that? I knew that cmd-A selected all the floating objects on the document, but I needed to select only a few of them. That was the only Keynote feature I was missing (apart from the themes, with all those predefined colors, backgrounds, textures...).
    So thank you!
    Rodrigo

  • Selecting multiple rows in a block

    In a multi record block, I would like to select multiple rows by double clicking on them. The backgroung color of all the selected rows should change to Blue.
    If I change the color using set_item_property, the color of all the rows change. If I set using set_block_property, it changes only for the current row. when I go to the next record, the color is set back to normal. Using set_record_property on the status of the record can be set.
    Can someone help me to achieve this?
    Thanks in advance

    I answered this in your other, duplicate, post.
    Regards,
    Robin Zimmermann
    Forms Product Management

  • Selecting multiple rows using column header with checkbox in it.

    Dear All.,
    I am trying to select multiple rows with checkbox in column header but it doesnot works...
    Following is my codel
    <af:table value="#{bindings.xx.collectionModel}"
                          var="row"
                          rows="#{bindings.xx.rangeSize}"
                          emptyText="#{bindings.xx.viewable ? 'No data to display.' : 'Access Denied.'}"
                          fetchSize="#{bindings.xx.rangeSize}"
                          rowBandingInterval="1"
                          filterModel="#{bindings.xx.queryDescriptor}"
                          queryListener="#{bindings.xx.processQuery}"
                          varStatus="vs" partialTriggers="sbcSelectAll sbcChkFlag"
                          selectedRowKeys="#{bindings.xx.collectionModel.selectedRow}"
                          selectionListener="#{bindings.xx.collectionModel.makeCurrent}"
                          rowSelection="none" id="tCdMast" width="400"
                          columnStretching="column:c4" inlineStyle="height:200px;">
                  <af:column sortProperty="ChkFlag" filterable="true"
                             sortable="true"
                             headerText="#{bindings.xx.hints.ChkFlag.label}"
                             id="c2" width="55"
                             inlineStyle="#{row.ChkFlag ? 'background-color:#9CACC9;' : ''}">
                    <af:selectBooleanCheckbox simple="true" value="#{row.ChkFlag}"
                                              selected="#{row.ChkFlag}" id="sbcChkFlag"
                                              autoSubmit="true" immediate="true"/>
                    <f:facet name="header">
                      <af:selectBooleanCheckbox simple="true"
                                                autoSubmit="true"
                                                valueChangeListener="#{xxBean.onTableChkAllCheckChanged}"
                                                id="sbcSelectAll"/>
                    </f:facet>
                  </af:column>
    </af:table>
    Managed Bean
        public void onTableChkAllCheckChanged(ValueChangeEvent valueChangeEvent) {
            Boolean newValue =
                Boolean.valueOf(u.nvlString(valueChangeEvent.getNewValue(),
                                            "false"));
            Boolean oldValue =
                Boolean.valueOf(u.nvlString(valueChangeEvent.getOldValue(),
                                            "false"));
            if (newValue.equals(oldValue))
                return;
            int rowIndex=0;
            ViewObject vo = u.findIterator("xxIterator").getViewObject();
            vo.reset();
            while(vo.hasNext()){
              Row row;
              if(rowIndex==0)
                  row=vo.first();
              else
                  row=vo.next();
                 row.setAttribute("ChkFlag", newValue.booleanValue());
              rowIndex=1;
            u.addPartialTargets(tableDocuments);
        }Please help!!.
    Thanks & Regards,
    Santosh.
    jdeve 11.1.1.4.0

    Can you check this sample in the blog post?
    http://sameh-nassar.blogspot.com/2009/12/use-checkbox-for-selecting-multiple.html
    Thanks,
    Navaneeth

  • Selecting Multiple Rows from ALV GRID Display

    Hi,
    I am having a ALV GRID Display. I want to select multiple rows from the Output and move them to an internal table.
    Please let me know how do I acheive this.
    Thanks in advance,
    Ishaq.

    Hi,
    Have a look on the following code. It displays the selected rows which hv been selected in basic list.
    TABLES:
      spfli.
    TYPE-POOLS:
      slis.
    DATA:
      BEGIN OF t_spfli OCCURS 0,
        checkbox.
            INCLUDE STRUCTURE spfli.
    DATA:  END OF t_spfli.
    DATA:
      t_sspfli LIKE STANDARD TABLE OF t_spfli .
    DATA:
      fs_spfli LIKE LINE OF t_sspfli.
    DATA:
      fs_layout TYPE  slis_layout_alv,
      w_program TYPE sy-repid.
    SELECT *
      FROM spfli
      INTO CORRESPONDING FIELDS OF TABLE t_spfli.
    *fs_layout-info_fieldname = 'COLOR'.
    fs_layout-box_fieldname = 'CHECKBOX'.
    w_program = sy-repid.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
      EXPORTING
        i_callback_program       = w_program
        i_callback_pf_status_set = 'FLIGHT'
        i_callback_user_command  = 'SPFLI_INFO'
        i_structure_name         = 'SPFLI'
        is_layout                = fs_layout
      TABLES
        t_outtab                 = t_spfli
      EXCEPTIONS
        program_error            = 1
        OTHERS                   = 2.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    *&      Form  FLIGHT
          text
         -->RT_EXTAB   text
    FORM flight    USING rt_extab TYPE slis_t_extab..
      SET PF-STATUS 'FLIGHT' EXCLUDING rt_extab.
    ENDFORM.                    "FLIGHT
    *&      Form  SPFLI_INFO
          text
         -->UCOMM      text
         -->SELFIELD   text
    FORM spfli_info USING ucomm LIKE sy-ucomm
                           selfield TYPE slis_selfield.
      selfield-refresh = 'X'.
      CASE ucomm.
        WHEN 'FLIGHT'.
          LOOP AT t_spfli.
            IF t_spfli-checkbox = 'X'.
              t_spfli-checkbox = ' '.
             t_spfli-color = 'C51'.
              MODIFY t_spfli TRANSPORTING checkbox.
              fs_spfli = t_spfli.
              APPEND fs_spfli TO t_sspfli.
            ENDIF.
          ENDLOOP.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
      ENDCASE.
      CLEAR fs_spfli.
      fs_layout-info_fieldname = 'COLOR'.
    fs_layout-confirmation_prompt = 'X'.
      fs_layout-key_hotspot = 'X'.
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
          i_callback_program = w_program
          i_structure_name   = 'SFLIGHT'
          is_layout          = fs_layout
        TABLES
          t_outtab           = t_sspfli
        EXCEPTIONS
          program_error      = 1
          OTHERS             = 2.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      REFRESH t_sspfli.
    ENDFORM.                    "SPFLI_INFO
    Regards,
    Chandu

Maybe you are looking for

  • Late 2011 macbook pro running slow

    Hi my macbook has been running pretty sluggish lately. I haven't upgraded anything since I've purchased it. Any thoughts? I just ran an EtreCheck a few minutes hoping it helps. Thanks in advance! EtreCheck version: 2.1.5 (108) Report generated Januar

  • J_security_check and Struts

    Hi all i'm developing a web-application with JSP/Struts which is running with Tomcat 5.0.18. I tried to use the Form-Based Authentication. But somehow i can't figure out how this works with struts. The login-config in web.xml looks like that: <login-

  • EBS - FI - Line item - Note

    Hello SAP-Experts, I have to create a note for every line item in a FI document when I execute the transaction FEBAN. The field SGTXT is not big enough to save the text comming from the bank file. The problem is, that during the creation I don´t have

  • Converting images using ImageIO

    hello all, I am in need of help asap. Does anyone know how to convert images from jpg/gif to PNG format using Imageiio? I will be very grateful if u can pass this information on to me. I need to convert the images on a server side and send the png im

  • Finding file with Spotlight

    How do I find a file with Spotlight? Or, more to the point, why does Spotlight make it soooo hard to find the location of files? Example: I want to find file "foo.xls". I type in "foo.xls" into Spotlight and sure enough, there it is! Great! Er .. but