New Swatch Type: 'Corporate Color'

Have you ever designed a logo and managed its various color versions? You will want this feature.
Click 'New Swatch' – you get a dialog box with the possibility to choose, among other things, from two color types: Process Color or Spot Color.
Let's imagine there was a third option: 'Corporate Color' (or whatever you want to call it, that's irrelevant).
Choose 'Corporate Color' – and you will be given the possibility to manually select/enter the color values of any/all versions this particular corporate color might have, say: PMS Coated, CMYK, RGB, RAL – and if needed, also PMS Uncoated version, different CMYK versions for newspaper and coated stock, etc.
Of course you would be able to add, remove and edit these color versions of a Corporate Color afterwards, as per the basics of good UX.
The thing is, these fixed values for different color versions would follow with the Corporate Color where ever you use it in your document, and whatever changes you make to your document. Say, you convert your document from CMYK to RGB – normal colors are converted according to whatever color management settings you might be using at the time (and continue to do so regardless of this new feature). But, a Corporate Color would first check if there's a fixed RGB version set, and if there is, skip all conversion calculations and, simply use that fixed version.
Also, if you 'Save for Web', for example, a suitable RGB version would be used of each/any Corporate Colors you've chosen to define and use in the document. Everything else would convert just as it does now.
You could use that? Yeah, thought so. But here's the really cool part: with Corporate Colors, you would also have this new export/save option: 'Export Corporate Color versions'. What would this option do? You guessed it right. It would export all the different color versions of the document, in neatly named files (and folder structure when applicable), and any formats you check for each Corporate Color version.
Let's say you have a two-color logo, and you've defined both colors as Corporate Colors with one CMYK and one RGB version. In the 'Export Corporate Color versions' dialog box (or the document's default settings for the tool) you choose a .pdf, an .eps and a 600ppi .tif format for the CMYK versions and a .svg and 1000px wide .png and .jpg formats for the RGB versions. Then simply click 'Export' and you get the following:
[folder: my-logo-cmyk-versions]
my-logo-cmyk.pdf
my-logo-cmyk.eps
my-logo-cmyk-600ppi.tif
[folder: my-logo-rgb-versions]
my-logo-rgb-1000px-wide.png
my-logo-rgb-1000px-wide.jpg
my-logo-rgb.svg
Each file in the company's official RGB or CMYK colors, effortlessly and with absolutely no mistakes.
If you like this idea, and would love to see it featured as soon as possible, upvote this suggestion and ask your colleagues to do the same.
Thanks everybody. I won't be taking more of your time. Bye!

Hi Ranjith,
This is how I debug output type message related issues :
i) If you get red coloured message against the output type - Put the breakpoint in FORM ENTRY of your print program and check the RETCODE variable. Also check the sy-msgid, sy-msgno variable.
ii) If you get red coloured light after pressing messages button. These Messages are updated using 'NAST_PROTOCAL_UPDATE' fm. Put a breakpoint in the function module and find out the cause.
Regards
DPM

Similar Messages

  • Custom color-palette keeps becoming read-only and will not let me add new swatches

    I need to make a custom colour palette for work that i can open on different adobe programs, share with others and add new swatches to as I go. I create a custom palette, save it a custom name but whenever I re-open it, it has become a read-only palette and I can no longer add custom swatches to it. How do I get around this problem if I need to keep adding colours to my custom palettes?
    Thanks

    In case you need to keep swatches from the ASE:
    create a new document
    empty the swatches panel
    add all the swatches from the ASE into that document's swatches panel
    add new colors as swatches
    from the swatches panel's menu select "save library"
    Also see the manual on creating swatches.

  • Script to select same stroke color and apply a new swatch...

    I am trying to write a script that will select a line based on a swatch name, apply a new swatch, set the stroke, dash and miter of the line...and then create a new layer, change then name of the layer, and then move the selected items to the newly created layer.
    All I could seem to accomplish was renaming a swatch.
    var swatchName = app.activeDocument.swatches;
    if (swatchName.length > 0) {
        for (i=0; i < swatchName.length; i++){  
            changeName(swatchName[i]);
    function changeName(swatchObject){
                     if (swatchObject.name == "PANTONE Orange 021 C"){                     
                        swatchObject.name = "021 (Orange)";
                    if (swatchObject.name == "PANTONE Red 032 C"){                     
                        swatchObject.name = "032 (Red)";
    So the goal of what I would like it to do is look for all paths with the stroke color set to "PANTONE Orange 021 C" then have it change the swatch name to "021 (Orange)". After that apply the stroke, dash and miter. Create a new layer named "021 (Orange)". Then send all of the selected lines to that layer.
    PLEASE HELP AS I HAVE 200+ files to do this task to. Using a windows machine with CS3. Trying to write in javascript.

    This would be the way to rename 2 existing swatches… The GUI pallet can be a little sticky in updating but it works…
    #target illustrator
    var docRef = app.activeDocument;
    var a = docRef.swatches.getByName('PANTONE Orange 021 C');
    a.name = '021 (Orange)';
    var b = docRef.swatches.getByName('PANTONE Red 032 C');
    b.name = '032 (Red)';
    redraw();
    My mistake… Looks like this Jive stuff gave you an unwanted bump from nowhere? Didn't look at the date…

  • "Create New Swatch" not working in Indesign CS5

    Suddenly, I am no longer able to create a process swatch by clicking on "new Swatch" on the swatch menu swatch. When I click this
    window comes up and the PMS list is over the procees color boxes and i cant input anything. To work around I have been creating the Process colors and them dragging them to the swatch palatte, but this is annoying. Any Idea how to fix this problem?

    Trash your prefs. See Replace Your Preferences

  • No "create new swatch" command

    I just noticed that there are no icon buttons at the bottom
    of the swatches panel to create or delete a new swatch like there
    is in AI and PS; is this an oversight?

    Paevo Kelley wrote:
    > I just noticed that there are no icon buttons at the
    bottom of the
    > swatches panel to create or delete a new swatch like
    there is in AI
    > and PS; is this an oversight?
    Click in the swatches panel. The cursor will change into a
    paint bucket,
    and the color of any object you have selected will be added
    to the panel.
    Stop expecting things in Fireworks to work the same way they
    do in
    Photoshop. :-)
    Linda Rathgeber - Adobe Community Expert
    http://www.adobe.com/communities/experts/members/8.html

  • Select path with same swatch and apply a new swatch

    I am trying to write a script that will select a line based on a swatch name, apply a new swatch, set the stroke, dash and miter of the line...and then create a new layer, change then name of the layer, and then move the selected items to the newly created layer.
    All I could seem to accomplish was renaming a swatch.
    var swatchName = app.activeDocument.swatches;
    if (swatchName.length > 0) {
        for (i=0; i < swatchName.length; i++){  
            changeName(swatchName[i]);
    function changeName(swatchObject){
                     if (swatchObject.name == "PANTONE Orange 021 C"){                     
                        swatchObject.name = "021 (Orange)";
                    if (swatchObject.name == "PANTONE Red 032 C"){                     
                        swatchObject.name = "032 (Red)";
    So the goal of what I would like it to do is look for all paths with the stroke color set to "PANTONE Orange 021 C" then have it change the swatch name to "021 (Orange)". After that apply the stroke, dash and miter. Create a new layer named "021 (Orange)". Then send all of the selected lines to that layer.
    PLEASE HELP AS I HAVE 200+ files to do this task to. Using a windows machine with CS3. Trying to write in javascript.

    This would be the way to rename 2 existing swatches… The GUI pallet can be a little sticky in updating but it works…
    #target illustrator
    var docRef = app.activeDocument;
    var a = docRef.swatches.getByName('PANTONE Orange 021 C');
    a.name = '021 (Orange)';
    var b = docRef.swatches.getByName('PANTONE Red 032 C');
    b.name = '032 (Red)';
    redraw();
    My mistake… Looks like this Jive stuff gave you an unwanted bump from nowhere? Didn't look at the date…

  • Picking colour for a new swatch from photos

    Often i paste some photos in indesign, I pick colour from it and then add colour to a vector graphic say
    I pick a shade of blue colour from a photograph and then fill a rectangle with that colour.
    How can I make a swatch for it? One way I know is to determine the RGB or CMYk values for that colour and then manually fill those values in new swatch options to create that colour. Is there a faster way, maybe picking a colour using some eyedropper from the rectangle's fill and making a swatch?

    How can I make a swatch for it?
    If I understand correctly, with the recangle color still selected go to windows>color panel and on flyout menu choose add to swatch.

  • New file type for XCode

    Hi!
    I want the XCode to apply C syntax coloring to the .nc files, which are not recognized by it. There are settings to change coloring schemes for known types, but i couldn't find anything to add a new file type. Each time I open a .nc file, I need to select the syntax coloring scheme manually..
    Anybody has any idea on where to find settings for that?
    best,
    Onur.

    I ran into this same problem just yesterday and I was glad to even find out that I could temporarily fix the problem by relaunching the finder. It also happened to my while I was renaming files. It allowed it for a few files and then all of a sudden, nothing. I couldn't type, or do any key commands with anything related to the finder, although all of my application files were fine.
    I am clueless as to how to permanently fix this problem, although i am thankful to read on how to relaunch the finder to fix it for a bit.
    I'll keep checking back to see if some guru stops by with the answer.
    Thanks for posting!

  • Adding a tint swatch of a color if the tint is being used? [JS][CS5]

    Hey there, I'm totally new to this scripting stuff and I've already pieced together a few scripts and much to my surprise it seems to be working!
    There is one thing I cannot find out how to do, though.  I think it would be possible.  Anyways, I'm looking for a script that will add a tint swatch of a color if the tint is being used.  So, say I have color1 in my swatches that is being used in the document and also in the document a 25% tint of color1 is being used.  I need the 25% tint to be made into a swatch as well.
    Is there a simple way to have a script "read" the document for unused tints and add them as a swatch?
    This is what I have pieced together for my script so far.  It is basically all from these two threads.
    http://forums.adobe.com/message/1106498
    http://forums.adobe.com/message/4115524
    //  Delete unused Character and Paragraph Styles
    var myDoc = app.activeDocument;
    var myParStyles = myDoc.paragraphStyles;
    var myCharStyles = myDoc.characterStyles;
    for (j = myParStyles.length-1; j >= 2; j-- ) {
       removeUnusedParaStyle(myParStyles[j]);
    for (i = myCharStyles.length-1; i >= 1; i-- ) {
       removeUnusedCharStyle(myCharStyles[i]);
    function removeUnusedParaStyle(myPaStyle) {
       app.findTextPreferences = NothingEnum.nothing;
       app.changeTextPreferences = NothingEnum.nothing;
       app.findTextPreferences.appliedParagraphStyle = myPaStyle;
       var myFoundStyles = myDoc.findText();
          if (myFoundStyles == 0) {
             myPaStyle.remove();
       app.findTextPreferences = NothingEnum.nothing;
       app.changeTextPreferences = NothingEnum.nothing;
    function removeUnusedCharStyle(myChStyle) {
       app.findTextPreferences = NothingEnum.nothing;
       app.changeTextPreferences = NothingEnum.nothing;
       app.findTextPreferences.appliedCharacterStyle = myChStyle;
       var myFoundStyles = myDoc.findText();
          if (myFoundStyles == 0) {
             myChStyle.remove();
       app.findTextPreferences = NothingEnum.nothing;
       app.changeTextPreferences = NothingEnum.nothing;
    // Delete unused Tags
    app.activeDocument.deleteUnusedTags();
    // Delete unused Swatches and Add Unnamed Colors
    app.menuActions.item("$ID/Add All Unnamed Colors").invoke();
    var myIndesignDoc = app.activeDocument;
    var myUnusedSwatches = myIndesignDoc.unusedSwatches;
    for (var s = myUnusedSwatches.length-1; s >= 0; s--) {
         var mySwatch = myIndesignDoc.unusedSwatches[s];
         var name = mySwatch.name;
    // alert (name);
      if (name != ""){
    mySwatch.remove();
    Thanks in advance for any responses.  I hope I can get this working so I have one less step to do while revising old documents!

    Rich Black has a nice pop for some things. In inkjet printing that doesn't reseperate blacks into a CMYK build on their own I generally like to set blacks as rich when printing to any substrate that isn't paper to reduced appearance of banding which most inkjets produce.
    Apparently adding only a bit of cyan isn't uncommon, though I generally have been accustomed to using a full CMYK black to build mine. Some use a 50-50-50-100 build, but I generally do a 50-40-40-100 to keep ink density a bit lower and it creates the same effect.
    I think you don't want to generally go over 280% ink density on much coverage when printing digitally on toner based copiers and digital presses, as the fusers can't get that much ink to adhere on coated stocks without a bit of flaking. Toner is supposedly a bit richer than printer inks, but I think largely the reason is inability for fusers to get hot enough to fuse without affecting the stock with either page curl or flat out charring coated stocks.
    If you are sending something out to a printer you have no control over (i.e. can't fire them in the case of a magazine or trade pub) and they have poor registration it is best to just give them straight black, as out of register rich black looks powerful bad.

  • The Swatches palette default color names

    Hi,
    I'm using Illustrator CS3 and I have a problem with the default colors in the Swatches palette.
    Basically, every time I brush my cursor over the colors, I get names like C=85 M=10 Y=100 K=10 instead of sunshine, or C=75 M=0 Y=75 K=0 instead of peridot, proper color names that I should see.
    Please help me out to display the right name settings since it will be easier for me to do my work. My Illustrator level is basic as I only took an introductory course, but will get better as I intend to put many hours of practice.
    Thanks in advance.

    PeeWee:
    I am using CS3 and I'm pretty sure the colors in the standard palettes have only been called C=stuff M=stuff Y=stuff K=stuff all along. I don't think they have other names. Adobe decided against sunshine... ;). You could start a new document, change the color swatch names and save that altered file as a template, then use that from now on.
    If you were an advanced user, you could also locate the cmyk and rgb default files and change those.
    To change a swatch name, double click the swatch and change the name in the dialog that comes up, then close the dialog and voila!
    HTH
    Bert

  • Creation of new Print Program & Variant for new Correspondence Type created

    Dear Friends,
    I have created 2 new Correspondence Types in SAP as SAP61 (Vendor Debit Note) & SAP62 (Vendor Credit Note) by copying SAP09 (Internal Document) properties like itu2019s Name of the print program - RFKORD30 & Name of variant - SAP09.
    We are facing problem when we execute print program in F.64 for SAP09 it is coming same like SAP61 or SAP62. Actual script & print values of SAP09 are replaced by SAP61 or SAP62.
    Please suggest us how we can differentiate both SAP09 & SAP61/62. Because we use these correspondences for different purposes like SAP09 gives the information for the Line items in the Document whereas SAP61/62 gives the information of vendor line item weather it is debit or credit entry.
    Your kind co-operation in this matter is highly appreciated.
    Thanks & Regards,
    Naveen Kumar.P

    "Assigned the from to the company code - progam in V_001F_B"
    Check 'Form ID' field in this IMG transaction against the program and form that you have created.
    I am assuming there are 2 lines with same entries but different form IDs.
    Or there are 2 lines with the same entries but different CoCodes (seem to remember that the CoCode is not taken into account as a key in certain programs - not logical i know but remembered a previous issue I had many moons ago - could be to do with the blank entry for CoCode field if there is one being picked up by the program before the entry that has your CoCode).
    Now check the variant attached and Form ID in step 'Created new program variants in SA38'
    Ensure the correct program and variant are attached in step OB78.
    My assumption is Form ID is the key.
    Hope this helps

  • Creation of New Condition Type

    Hello SAP Folks,
    I have one issue related to pricing. See the case is i have to produce an extra cost in the Sales Order which is actually depended
    upon the net price. This condition type is percentage based and calculation works in the following way:
    Let the new condition type be Z123 and Net price be PR00.
    So for year variation 1-2 year, the condition type Z123 will be 1.5 times of PR00
                                      2-3 year, the condition type Z123 will be 2.0 times of PR00
                                      3-5 year, the condition type Z123 will be 3.0 times of PR00
    Can anyone throw light on how to configure this condition type ???
    Regards,
    Sarthak

    Hi,
    For Z123 Condition type make (V/06)
    Cond. class A Discount or surcharge
    Calculat.type A Percentage
    Plus/minus A Positive
    and all other settings are same as Discount condition Type
    For making Z123 customize an Discont Condition Type (EX:K004,)
    Then while creating the condition record give the percentage as 150% 1-2 yearin valid from and to date,
    give the percentage as 200% 2-3 yearin valid from and to date, give the percentage as 300% 3-4 yearin valid from and to date, and save the record. (VK11)
    In the pricing procedure For step z123 condition type from which you want the % that is step of PR00 should be mentioned in the FROM and TO column.(V/08)
    This will result as per your requirement

  • CREATION OF NEW DOCUMENT TYPE

    Dear cons
    We want to create a new document type for pur. requisition.In this document type  account assignment  will be 'P'(PROJECT) . w.b.s should be only enter.
    so pl. give the details of filling data in the required field step by step. waiting for your early response.
    thanks
    nirupama

    Hi,
    In order to create a document type for a purchase requisition  use the path
    spro-materials management - purchasing--purchase requisitions --define  document type
    in that screen you select the document type you want to copy to create your document type and perform the action.
    if you want to change the screen/field selection for your document type select the field selection key (if you select the document type as NBB the field selection key will be NBB.,and go to the screen and change the field status.
    Hope this will be suffient for your requirement.
    Regards,
    Raghu.

  • Pricing: New condition type not getting listed in options in product master

    Hi,
    I have created a new pricing procedure and also created a new condition type for it. I am trying to create a condition record in the product master for this  condition type but the condition is not there in the list of conditions. How can I inlcude it in the condition list?
    Even the new condition type I have created by copying 0PR0 is not getting listed in the options, whereas 0PR0 is getting listed.
    Regards,
    Meenakshi
    Edited by: Meenakshi Sawhney on Sep 9, 2010 8:27 AM
    Edited by: Meenakshi Sawhney on Sep 9, 2010 8:29 AM

    Hi Meenakshi,
    you need to enhance the condition maintenance group in the customizing, which is assigned to the product master. Please check: IMG: Customer Relationship Management -> Master Data -> Products -> Special Settings for Sales Operations -> Assign Condition Group to Application CRM and IMG: Customer Relationship Management -> Master Data -> Conditions and Condition Technique -> Condition Technique: Basics -> Create Maintenance Group.
    Best Regards,
    Michael

  • Accounting Document for New Movement Type

    Good day!
    Here's the scenario: I have created a new movement type in SPRO. I just copied from the existing movement type closely related to what I wanted to create. I executed the transaction in MB1C and it went well and generated a Material Document number. When I viewed the Material Document number in MB03, it has no Accounting Document number. Is there any config that i missed? How can I relate this transaction to accounting?
    Thank you for your assistance.

    hi
    first check which movement type u have copied .
    now check is ur material is valuated for the plant
    now in OMJJ go to ur movemnttype  and in update control u should have value and quantity update entry
    also check if u have used the po as free or if it is initial entry then check ur material master price
    hope it hellp
    regards
    kunal

Maybe you are looking for

  • Windows XP Pro SP2 cd-rom after downgrading from Vista

    Hi everybody. I successfully downgraded my T61p from Vista to XP Pro SP2 using the downgrade cd-roms send by Lenovo. Everything seems to work well. I downloaded all drivers. No problem. But I recently installed a rather old software that I frequently

  • How to find the data table sin CRM 4.0

    Dear Guru's I want to know where can i get all the data tables in crm 4.0 for example if i want to know the data table for the Reason in activity Management.with the help of data table only the ABAP people can work.....na Points willbe given With Bes

  • Missing mail folders

    Installed SL and apart from a couple of things that were solved by the help of comments here everything is great. The only thing that I cant work out is that on my hotmail account I have various folders with rules that used to show up in the mail app

  • Outputing reports to Word from Oracle reports

    I have already created the template in word, I saved it as an html file. Opened it from Oracle reports and have started working on the web source, but I don't really know where to go from here. Help it urgent. Thanks

  • Variable Pricing in Retail System

    Hi Guys, It will be very helpful if someone provides some points on Variable Pricing in Retail System. Actually the price offered to a direct customer for a particular article which differs from the reseller price. How can we set up this in variable