Script to Change swatch CMYK values

Are there any scripts available to change CMYK values of swatches for files in CS3?
I have hundreds, probably thousands of Illustrator EPS files that use swatches all drawn from a total palette of maybe 50 colours.
Each colour is named and has a corresponding CMYK value.
I want to update the CMYK values for all ~50 colours that appears across all these documents. Is there some way I can simply change the CMYK spec of the swatches used by each of these documents by not having to manually open and change the colours etc?
Even a script would be good that could batch process the files?
For example:
File contains a swatch as a named colour like:
Fire Red spec'd as 0, 96, 99, 0
I want to automate changing the CMYK values for all files containing Fire Red to, say, 0, 98, 99, 0
Any ideas? I have searched Google for a couple of days.
Edit: the flavour here is Illustrator for CS3 - both Win and Mac.

I understand EXACTLY what you mean as it's the same thing I need to do, and will probably need to do on future occasions.
Did you get anywhere with this problem?
I have designed a scheme for a textbook I am illustrating (this is what I do for a living and have been doing so for well over a decade using Illustrator).
All colours used in every illustration are based on 7 CMYK Global swatches, usually 100% tints but also 50% 75% and others when required.
Anyway I have done 100 illustrations already based on my template when I realize I'm going to have to darken the green by +10% cyan.
What I need is a script to change the definition of my global 'green' swatch in every document from 100Y 30C to 100Y 40C.
Actions won't do it.
Any suggestions?

Similar Messages

  • AUTOMATION: Changing Swatch Values

    Hello forum,
    I am wondering if there is a way, in Illustrator CS2, to
    automatically change the CMYK values of named (spot color) swatches in the palette of an open AI file (I am running under Windows OS).
    I would like to be able to choose from a predefined series of color schemes the color combination desired for the working file and have the CMYK value of the named spot color swatches changed to coincide with the selected combination (as opposed to manually selecting each swatch and entering the CMYK values).
    The predefined color schemes file would need to be able to be manually modified as well.
    I hope my description makes sense, hehe. Any ideas?
    Thanks,
    Mason

    I've done it with AI 10 on Wondows OS. It should be true with CS2.

  • Specific Colour changing Script from RGB to CMYK

    I need to change the RGB values (imported from word) to specific CMYK values in Indesign (its not a straight swop) so I need a script or a similar plug-in that enables me to input the colour values for the CMYK so they automatically change.... the doc i work on is huge and im importing from a word file many times so i need to save time!!
    Can anyone help me?
    Thank you!

    Hi Phil... Hmmm not sure if i explained myself! Or maybe I am being thick.... I tried the new code but im not sure I was clear on my problem?
    This is the current code i use to change the RGN values to the CMYK is: I have entered the RGB and CMYK values as they need to be changed and it works but the swatch pallette ends up looking messy! See below.
    var myIDOc = app.activeDocument;
    var mySwatch = myIDOc.swatches;
    for (var j=4; j<mySwatch.length; j++){
        try{
             if(mySwatch[j].space ==ColorSpace.RGB){
                 if(mySwatch[j].name=="Word_R122_G75_B153"){// may be this is correct you can check the indesign swatches name
                     mySwatch[j].model=ColorModel.PROCESS;
                     mySwatch[j].space = ColorSpace.CMYK;
                     var myCV = mySwatch[j].colorValue=[48,72,0,0];
                     mySwatch[j].name = "C=" + myCV[48] + " M=" + myCV[72] +" Y=" + myCV[0] + " K=" + myCV[0];
             }catch(e){alert(e)}
    var myIDOc = app.activeDocument;
    var mySwatch = myIDOc.swatches;
    for (var j=4; j<mySwatch.length; j++){
        try{
             if(mySwatch[j].space ==ColorSpace.RGB){
                 if(mySwatch[j].name=="Word_R255_G0_B255"){// may be this is correct you can check the indesign swatches name
                     mySwatch[j].model=ColorModel.PROCESS;
                     mySwatch[j].space = ColorSpace.CMYK;
                     var myCV = mySwatch[j].colorValue=[0,100,0,0];
                     mySwatch[j].name = "C=" + myCV[0] + " M=" + myCV[100] +" Y=" + myCV[0] + " K=" + myCV[0];
             }catch(e){alert(e)}
      var myIDOc = app.activeDocument;
    var mySwatch = myIDOc.swatches;
    for (var j=4; j<mySwatch.length; j++){
        try{
             if(mySwatch[j].space ==ColorSpace.RGB){
                 if(mySwatch[j].name=="Word_R0_G0_B255"){// may be this is correct you can check the indesign swatches name
                     mySwatch[j].model=ColorModel.PROCESS;
                     mySwatch[j].space = ColorSpace.CMYK;
                     var myCV = mySwatch[j].colorValue=[100,0,0,0];
                     mySwatch[j].name = "C=" + myCV[100] + " M=" + myCV[0] +" Y=" + myCV[0] + " K=" + myCV[0];
             }catch(e){alert(e)}
      var myIDOc = app.activeDocument;
    var mySwatch = myIDOc.swatches;
    for (var j=4; j<mySwatch.length; j++){
        try{
             if(mySwatch[j].space ==ColorSpace.RGB){
                 if(mySwatch[j].name=="Word_R255_G255_B255"){// may be this is correct you can check the indesign swatches name
                     mySwatch[j].model=ColorModel.PROCESS;
                     mySwatch[j].space = ColorSpace.CMYK;
                     var myCV = mySwatch[j].colorValue=[0,0,0,0];
                     mySwatch[j].name = "C=" + myCV[0] + " M=" + myCV[0] +" Y=" + myCV[0] + " K=" + myCV[0];
             }catch(e){alert(e)}
      var myIDOc = app.activeDocument;
    var mySwatch = myIDOc.swatches;
    for (var j=4; j<mySwatch.length; j++){
        try{
             if(mySwatch[j].space ==ColorSpace.RGB){
                 if(mySwatch[j].name=="Word_R0_G0_B0"){// may be this is correct you can check the indesign swatches name
                     mySwatch[j].model=ColorModel.PROCESS;
                     mySwatch[j].space = ColorSpace.CMYK;
                     var myCV = mySwatch[j].colorValue=[0,0,0,100];
                     mySwatch[j].name = "C=" + myCV[0] + " M=" + myCV[100] +" Y=" + myCV[0] + " K=" + myCV[100];
             }catch(e){alert(e)}
      var myIDOc = app.activeDocument;
    var mySwatch = myIDOc.swatches;
    for (var j=4; j<mySwatch.length; j++){
        try{
             if(mySwatch[j].space ==ColorSpace.RGB){
                 if(mySwatch[j].name=="Word_R234_G229_B255"){// may be this is correct you can check the indesign swatches name
                     mySwatch[j].model=ColorModel.PROCESS;
                     mySwatch[j].space = ColorSpace.CMYK;
                     var myCV = mySwatch[j].colorValue=[8,10,0,0];
                     mySwatch[j].name = "C=" + myCV[8] + " M=" + myCV[10] +" Y=" + myCV[0] + " K=" + myCV[0];
             }catch(e){alert(e)}
    The outcome is the swatch pallette attached:
    How do I incorporate the new code to make sure all the values are hopefully to end up looking similar to this!!??
    Thanks for all your time and effort helping me!
    babeanz

  • Change swatches from CMYK to RGB

    Okay so I've just realised that my documents are CMYK and have changed the settings to RGB (File > Document color mode > RGB and from the colour fly out menu) although I notice that when I hover my mouse over the colors in the swatches panel that it shows me the CMYK values.
    Could someone please assist me with this as I'm not sure why this is happening.
    Thanks in advance

    to change color definitions--from the 'color' menu select the flyout menu in the upper right corner (indicated in attached pics) and change from cmyk to rgb

  • Selecting by CMYK value or Swatch Name

    I am new at scripting so please forgive me. What I want my script to do is look in an open document for any items that are colored a certain swatch color or CMYK value.
    I do have named swatches. For instance "032 (Red)". This swatch is a PANTONE swatch. The other CMYK values I need to search for are C:0, M:98, Y:82, K:0. What I would like the script to do is search the document for any items that have those CMYK values OR that swatch "032 (Red)" applied to it and then apply the "032 (Red)" swatch to it and then set the stroke properties to a line weight of 1.6, then a round join, and a dash of 6,4,6,4,30,4.
    I know this may be asking a lot...and I am sorry that I don't even have a script to start with and edit. But being so new...I don't know where to start. I have the scripting guide but if someone could get me going on this I think I could make some headway.
    Much appreciated!

    Check out IColorData in SnpManipulateSwatch.cpp in the SDK examples.
    The information you are looking for is obtained by calling GetColorData()
    ]PMReal _SafeColourElement(const PMReal &TheGivenColour)
    ] if (1.0 < TheGivenColour) return PMReal(1.0);
    ] else if (0.0 > TheGivenColour) return PMReal(0.0);
    ] else return TheGivenColour;
    ] ColorArray colorArray = iColorData->GetColorData();
    ]uint16 CyanComponent = ToUInt16(0x0ffff * _SafeColourElement(colorArray[0]));
    ]uint16 MagentaComponent = ToUInt16(0x0ffff * _SafeColourElement(colorArray[1]));
    ]uint16 YellowComponent = ToUInt16(0x0ffff * _SafeColourElement(colorArray[2]));
    ]uint16 BlackComponent = ToUInt16(0x0ffff * _SafeColourElement(colorArray[3]));

  • Script to convert RGB values to CMYK values

    I want a script that can help me convert RGB value to CMYK values.
    I've seen this thread which explains a script to round up and down:
    http://forums.adobe.com/thread/1079041
    but is there a script that i can actually define lets say the colour is yellow and in RGB it looks ok because its in RGB mode so you change it to CMYK and you have 6% - 9% cyan and you only want yellow
    is there a script out there that i can say
    if
    cyan = 6%
    yellow = 80%
    magenta = 0%
    black = 0%
    then change to
    cyan = 0%
    yellow = 80&
    mangenta = 0%
    black = 0%
    I don't mind writting the code for each colour that needs to be converted as it would only need defining once but how would i make this script?
    any clues?

    Hi Carlos,
    I've got a bit further with applescript as i've used it a little but i've got an error this is my code so far:
    tell application "Adobe Illustrator"
              if exists color is equal to "C=0 M=0 Y=0 K=90" then
                        set color to "C=0 M=0 Y=0 K=100"
              end if
    end tell
    The error i'm getting is "can't get color"
    the color is there however i believe i must not be using the correct variable any clues?

  • Powershell script to change the a column value of all documents in a site.

    Hi,
    I need a powershell script to change the value of a column (a site column which has been added to all document libraries) in all documents in a site,
    For example: 
    -column 1 is a site column added to all libraries
    the value of column 1 of all documents under this site: http://intranet.doman/ex1 should be equal to V1
    the value of column 1 of all documents under this site: http://intranet.doman/ex2 should be equal to V2
    So, if I can write a powershell script to change the value of all documents in a site, I can modify it for different site that I have and run it for each of them individually,

    cls
    # Is dev version?
    $dev = $false
    # Configuration
    $termStore = "Managed Metadata Service"
    $group = "G1"
    $subjectMatterTermSetName = "Subject Matter"
    # Check if SharePoint Snapin is loaded
    if((Get-PSSnapin | Where {$_.Name -eq "Microsoft.SharePoint.PowerShell"}) -eq $null) {
         Add-PSSnapin Microsoft.SharePoint.PowerShell
    [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Taxonomy") | Out-Null
    function GetTermStore($site, $termStore, $group, $termSet) {    
        $session = New-Object Microsoft.SharePoint.Taxonomy.TaxonomySession($site)
        $termStore = $session.TermStores[$termStore]
        $group = $termStore.Groups[$group]
        $termSet = $group.TermSets[$termSet]
        return $termSet
    if($dev) {
        Write-Host "Running DEV version..."
        $webUrl = "http://Site1"   
        $libraryName = "L1"
        $subjectMatter = "C1"
    } else {
        $webUrl = Read-Host "Enter Site URL" 
        $libraryName = Read-Host "Enter Document Library name"
    $subjectMatter = Read-Host "Enter Subject Matter"
    try {
        $web = Get-SPWeb $webUrl
        $site = $web.Site
        $library = $web.Lists[$libraryName]
        $items = $library.GetItems()
        $subjectMatterTermSet = GetTermStore $site $termStore $group $subjectMatterTermSetName
        $subjectMatterTerm = $subjectMatterTermSet.GetTerms($subjectMatter,$true) | select -First 1
        foreach($item in $items) {
            if([string]::IsNullOrEmpty($item["Subject Matter"])) {     
                #Write-Host "Filename: $filename / Keywords: $keywords / Subject Matter: $subjectMatter / Document Type: $documentType"        
                Write-Host "Updating $($item["ows_FileLeafRef"])..."           
                # Set Subject Matter column
                $subjectMatterField = [Microsoft.SharePoint.Taxonomy.TaxonomyField]$item.Fields["Subject Matter"]
                $subjectMatterField.SetFieldValue($item,$subjectMatterTerm)
                # Update Item
                $item.SystemUpdate()
    catch
        $ErrorMessage = $_.Exception.Message
        Write-Host "Something went wrong. Error: $ErrorMessage" -ForegroundColor Red

  • How to change the Unitprice value from 2 decimals to 3 decimals in script

    Hi Gurus,
    how to change the Unitprice value from two decimals to three decimals for each item level for PO in script.
    Please provide some possible solutions.
    Thanks,
    V.V.

    Hi,
    Check the options available like
    &VAR(.2)&  this will print 2 decimals
    &VAR(.3)&  this will print 3 decimals
    need to change the value for how many decimals you need
    Thanks & Regards
    Sarves Sombhatla

  • Why would CMYK values shift in my swatches?

    On opening (a CS4) file for revisions (in CS5.1), all my CMYK swatches are slightly off in terms of percentages (not visually, but numerically by say tenths of a percent). By copying individual elements into a new document I discovered that the colors percentages were stable until I brought in a pie chart. The chart had been created in earlier Illustrator along with the other graphic elements. However, bringing in the pie chart threw the whole document color space into a problem. Even though the pie chart does not contain any of my swatches, all the swatches are affected.
    Also, the document now opens with an asterisk. It has to be either saved or not upon closing.
    There has been no change to RGB, and although the document contains some spot color, it is the CMYK swatches that are the problem.
    Considering this document is subject to yearly revisions, I would like the colors to be stable. I want C-100, M-0, y-79, K-60 to stay that way, and not come up like they are, which is C-100, M-0, Y-78.91, K-59.77. My color space is Web Coated (SWOP) v2.
    Any suggestions are greatly appreciated.

    Exactly how is the color that is changing defined, is this a BOOK COLOR (eg: pantone)? Adobe has changed the cmyk breakdown of  colors, and usually you will get this error.
    Unless they are book colors, then you get no warning and the situation you described.
    Also check that your document color mode is the same between both documents.

  • Why does Illustrator automatically change RGB and CMYK values

    Hi, I am struggling to understand why Illustrator is changing the values inside the RGB and CMYK boxes. I am also not sure of the exact relationship between these values. Essentially, it appears that if you set the Document Color Mode to RGB, it leaves the RGB values that you type in alone. If you set the Document Color Mode to CMYK, it leaves the CMYK values alone.
    But as soon as you change the Color Mode, it automatically modifies the values. So if you were in RGB mode and you set some RGB values, it changes those RGB values when you switch to CMYK mode. And vice versa.
    I had thought that the CMYK palette was a subset of the RGB palette. It would make sense to me if it did this when I switched from RGB to CMYK mode, but it doesn't make sense to me why it does this when I switch from CMYK to RGB mode.
    The other thing I am confused about is the relationship of the values in the RGB boxes to the values in the CMYK boxes. I would have thought that the relationship between them would be static. Actually, it is not. When I am in CMYK mode and I enter a CMYK value of 90 16 0 0, the RGB values become 0 158 222. But when I switch over to RGB mode, the RGB values of 0 158 222 result in CMYK values of 75 23 0 0.
    Very confusing.
    Thanks in advance if you can explain this behavior!
    Best Regards,
    Z.

    Color management.
    Hi, I am struggling to understand why Illustrator is changing the values inside the RGB and CMYK boxes. I am also not sure of the exact relationship between these values. Essentially, it appears that if you set the Document Color Mode to RGB, it leaves the RGB values that you type in alone. If you set the Document Color Mode to CMYK, it leaves the CMYK values alone.
    An Ai document can be either RGB or CMYK. The colors follow the document color mode and thus are converted immediately if they don't match.
    But as soon as you change the Color Mode, it automatically modifies the values. So if you were in RGB mode and you set some RGB values, it changes those RGB values when you switch to CMYK mode. And vice versa.
    Same reason.
    I had thought that the CMYK palette was a subset of the RGB palette. It would make sense to me if it did this when I switched from RGB to CMYK mode, but it doesn't make sense to me why it does this when I switch from CMYK to RGB mode.
    It's not. CMYK color spaces (there are more than just one) are normally smaller than RGB color spaces, but they aren't a "subset".
    The other thing I am confused about is the relationship of the values in the RGB boxes to the values in the CMYK boxes. I would have thought that the relationship between them would be static. Actually, it is not. When I am in CMYK mode and I enter a CMYK value of 90 16 0 0, the RGB values become 0 158 222. But when I switch over to RGB mode, the RGB values of 0 158 222 result in CMYK values of 75 23 0 0.
    When Illustrator converts the colors, it uses color management: the profiles you set up and the methods you set up. After converting it forgets the color that used to be. When converting "back", it uses color management again.
    When you convert an very bright RGB color, it be out of the CMYK gamut. So it get's converted to the closest possbile CMYK color (which might still be far away from the original color. But it's not possible to convert it "back" to the bright one unless you just revert the conversion (by Cmd/Ctrl + Z).

  • CMYK values change between FH and Photoshop

    Hi,
    I'm trying to recreate a logo in FreeHand MX11 from one done
    in Photoshop CS2 that's composed of PMS colors. Unfortunately, the
    original artist didn't leave notes as to which PMS colors she used,
    but when I sample a color in P'shop, I get a PMS color (286 PC
    C100/M66/Y0/K2) that's a near match. Trouble is, when I assign that
    same color in FreeHand, even though the color has the same CMYK
    values, it looks much darker and not the same color at all. When I
    copy and paste the image from FH into Photoshop and sample it, its
    values change to C100/M86/Y23/K9.
    I'm confused, how can both apps have so much variation in
    displaying PMS colors? Is there a color management setting I need
    to fix?
    Thanks for any assistance,
    Chris

    >> [...] but when I sample a color in P'shop, I get a
    PMS color that's a near
    >> match. Trouble is, when I assign that same color in
    FreeHand, it looks much
    >> darker and not the same color at all.
    >
    > What are your color management settings is FH? Are you
    on a PC or a Mac? Are
    > you using ColorSync?
    The reason is most likely color management in FreeHand. Note
    that there is a checkbox 'Color manage spot colors' in
    Preferences/Colors. It should be checked, of course. Photoshop and
    FreeHand use slightly different RGB color values for Pantone Spot
    colors. The difference is very small, though.
    Don't rely on screen color but check the colors from Patone
    booklet because that's what the printer will do. Unlike cmyk colors
    onscreen color management is not that crucial, although it is much
    nicer to work if is set just right.
    Also note that not single Pantone Spot color can be reprouced
    with cmyk colors. Espeicially greens, orages and violets will
    change significantly. Pantone Spot to CMYK chart is a very useful
    tool, included in the 'Panton Survival Kit'.
    Jukka

  • Wlst script to change values for Logging.

    Hi,
    i am trying to write a wlst script to change attributes for the following.( i am new to wlst scripting)
    For all servers in a domain,
    Logging --> General --> Check Limit number of retained files
    --> Files to retain to different number.
    --> Log file Severity Level
    --> Standard out Severity Level
    --> Demain log broadcaster Severity level
    --> Memory Buffer Severity Level
    Logging --> HTTP --> Check Limit number of retained files
    --> Files to retain to different number.
    I was able to figure out the path for some of the attributes in Logging --> General.
    wls:/wl9xdomain/serverConfig/Servers/AdminServer/Log/AdminServer>
    wls:/wl9xdomain/serverConfig/Servers/AdminServer/Log/ManagedServer1>
    Can you help in finding the paths for above attributes.
    And this is the sample script i wrote, and succeded in changing "Files to retain to different number" in Logging --> General.
    connect('weblogic','weblogic','t3://localhost:7001')
    edit()
    startEdit()
    cd('/Servers/AdminServer/Log/AdminServer')
    set('FileCount',10)
    validate()
    save()
    activate()
    disconnect()
    exit()
    Thanks,
    Krishna.
    Edited by: user2656687 on Apr 15, 2009 4:46 PM

    Thanks for the response. I was able to figure out that access.log file attributes are in /Servers/AdminServer/WebServer/AdminServer/WebServerLog/AdminServer.
    And now i trying change script to apply for all the servers.
    when i use for loop it is failing. any thougts on it. may i know the syntax in this case..
    connect('weblogic','weblogic','t3://localhost:7001')
    edit()
    startEdit()
    cd('/Servers/AdminServer/Log/AdminServer')
    cmo.setNumberOfFilesLimited(true)
    cmo.setFileCount(100)
    cmo.setDomainLogBroadcastSeverity('Warning')
    cmo.setMemoryBufferSeverity('Warning')
    cmo.setLogFileSeverity('Warning')
    cmo.setStdoutSeverity('Warning')
    cd('/Servers/AdminServer/WebServer/AdminServer/WebServerLog/AdminServer')
    cmo.setNumberOfFilesLimited(true)
    cmo.setFileCount(100)
    save()
    activate()
    Thanks,
    Krishna.

  • Convert from spot color to custom CMYK value in Applescript

    I thought this would be very simple and it's not apparently. I am trying to convert a spot color into a custom CMYK value. Basically:
    tell application "Adobe Illustrator"
              set theList to every path item of current document
              repeat with k from 1 to count of theList
                        if fill color of item k of theList = {name:"Dark Green"} then
                                  set fill color of item k of theList to {cyan:0.0, magenta:100.0, yellow:0.0, black:0.0}
                        end if
              end repeat
    end tell
    But this script obviously doesn't work. From what I can tell, the fill color simply returns the tint of the item, not the name of it. I can't find anything that returns the name of a spot color so I can set the correct corresponding color. In the above example, I made the color obviously changed so I could visually see the result.
    Any advice would be greatly appreciated! I'm a first time poster here.
    Thanks!

    tell application "Adobe Illustrator"
              tell current document
                        set theList to every path item
                        set sw to every swatch
                        repeat with i from 1 to count of sw
                                  set swname to name of item i of sw
                                  if swname = "Dark Green" then
                                            set swco to color of item i of sw
                                            repeat with k from (count of theList) to 1 by -1
                                                      set co to fill color of item k of theList
                                                      if swco = co then
                                                                set fill color of item k of theList to {cyan:0.0, magenta:100.0, yellow:0.0, black:0.0}
                                                      end if
                                            end repeat
                                  end if
                        end repeat
              end tell
    end tell

  • [AS] Can't Find a CMYK Value Properly

    I can't get Apple Script to recognize a CMYK color on a stroke. I'm trying to write a script that will step through page items in an AI file and, if it comes across items with certain CMYK values, change the values of those items.
    But I'm coming across this weirdness:
    If I get properties of an item, I can see that the color of a given stroke is:
    stroke color:{class:CMYK color info, cyan:0.0, Zoom:100.0, yellow:100.0, black:0.0}
    However, this following script does not successfully find the very same colored stroke even though the stroke color is exactly the same as that found when I used get preoperties. What's going on here. Is it a syntax error on my part or a bug?
    tell
    application "Adobe Illustrator"
    tell
    current document
    tell
    layer 1
    set theList
    to
    every
    page item
    of
    it
    repeat
    with x
    from 1
    to
    count
    of
    items
    in theList
    repeat
    with k
    from 1
    to
    count
    of theList
    if
    stroke color
    of
    item k
    of theList = {
    class:
    CMYK color info,
    cyan:0.0,
    zoom:100.0,
    yellow:100.0,
    black:0.0}
    then
    display dialog "hey"
    end
    if
    end
    repeat
    end
    tell
    end
    tell
    end
    tell

    Thanks Simon and Larry. The problem was one of my OSAXs. I removed my scripting additions and restarted and the mysterious "Zoom" is gone. We're back to magenta in the magenta slot.
    Now the script works perfectly. Two follow-up questions though, if you have time:
    1. I want to make sure where Larry was going with his setting "selected of item k" to true. It sounds like the plan is to iterate though all objects, select those that meet the criteria and then change that criteria (in this case a color property) once. Is this faster than a script that would find an object and change its color property before moving on and finding the next object? Is one way better than the other for any other reasons?
    2. This one's tougher. I've noticed that if I create a CMYK swatch in AI and then apply that swatch to an object and then get properties of that object, the CMYK values of that object differ minutely from what I created. For example, if I create a C=10, M=20, Y=30, K=40 swatch and then get properties on an object I've applied it to, the color might actually be:
    stroke color:{class:CMYK color info, cyan:10.000002384186, magenta:19.999998807907, yellow:30.000001192093, black:39.999997615814}
    I guess this probably has something to do with color space or gamuts or something. But what I really want to know is can how I can test for a color that I think is 10/20/30/40 and find it even if it's really 10.000002384186/19.999998807907/30.000001192093/39.999997615814.
    Is the only way to do this to get the color info for an item into a list or record and then round them to nearest 2-digit number or is there an easier way to handle this?
    Thanks.

  • Illustrator cs5 changes Kuler color values when importing, Help!

    I am using Illustrator cs5. I access the Kuler Color theme feature for color themes. I will select a them from the Kuler feature
    and then choose to add that theme to my swatch panel. I then check the individual colors in the color panel. Here is the
    problem: when illustrator brings in the Kuler colors to the Illustrator color panel it will change the values of that color which
    changes the actual color. For instance a bright green becomes a muted turquoise. This conclusion is not by my sight,
    because I have opened the specific color theme at the Kuler Web sight and obtained the CMYK values for those colors,
    and then gone back to the Illustrator color panel and compared then values there. The values are changed which creates
    a different color --- obviously. So how can I use the Kuler feature when illustrator changes the values on me which then
    changes the color? Help

    I dont know what my color settings are at this point.
    I download the Kuler color theme straight from the Kuler panel open on my desktop. I open
    the drop down menu options and choose: add this theme to your color swatches. The
    theme is moved over to the swatch panel while I am using Illustrator.
    I don't know what you mean by your last question.

Maybe you are looking for

  • How to run two icalenders on the same computer?

    How can i run two separate icalenders on the same computer? I have my own icalender with work, home, etc, and it's totally full. I am now running an artists collective and will publish the collectives icalender on the web. I don't, however, want to m

  • S_alr_87013104

    Dear All Can I get the information on Business area wise intthe Tcode s_alr_87013104 Thanks and Regards Suresh

  • Problem in crystal reports

    Hello i have a problem in crystal report, i want to dispaly data from MYSql data base to crystal report through my application I have'nt work on crystall report before this please help me..... thanks in advance

  • JDev 9.0.3 - generating useless imports

    Hello, When I modify objects (entities, view objects, application modules) in my BO project, I find out that JDeveloper inconsistently adds for me some useless imports. This will happen on any modification of that object. Even if I only open the prop

  • Account Determination for the Procurement of Sales Order Stock

    Dear All, I am trying to a procure stock with reference to  a sales order(with Account Assignment Cat E in PO),System is not picking/posting the stock into BSX inventory Account upon Goods Receipt. The requirement is to post the sales order stock pro