Photoshop Swatches - .aco vs. .ase

Hello together,
for some versions Photoshop can create this "exchange swatches" (.ase) for other applications like Illustrator or InDesign. I wonder for what reason it would be an advantage to use the older swatches (.aco) anyymore?
For compatibility reasons towards older Photoshop versions?
Thanks for answers
Philip

The Photoshop native swatch files (.ACO) support more color modes.
.ASE files are a common denominator format.

Similar Messages

  • How can i print a color swatch chart of photoshop swatches? [was:jasrhodes]

    how can i print a color swatch chart of photoshop swatches?

    The forum hosts have corrected your post title, but for next time, please give your threads a sensible topic title.
    Also more information would be appreciated.
    Please read this FAQ for advice on how to ask your questions correctly for quicker and better answers: 
    http://forums.adobe.com/thread/419981?tstart=0
    Thanks!

  • Can illustrator and photoshop share the same gradient swatches?

    I love the metals that illustrator has in its swatch library can I bring those across to photoshop as well?
    Any idea?

    Yes! From Photoshop swatches panel the flyout Load Swatch Library and navigate the the Illustrator Presets folder and swatches.

  • Default photoshop .ACO color file name

    Does anyone know the name of the default ACO color file?  As a teacher, I have a student that has lost all the red colors in his swatches.  The machine is used by other students and their colors are fine.  I've tried resetting his colors and everything else I can find and have chatted with here on the forums.  I'm starting to think that somehow he deleted the aco folder or something.  Thanks!

    Right-click the PS app file>Select Show Package Contents>Required>Default
    Swatches.aco
    You might copy from another machine and save in this location to replace
    the default .aco file.
    -JM

  • CS3 - Cannot save swatches as AI or ASE

    I have previously created custom swatch libraries in both .ai and .ase formats. For some reason, this is no longer possible. For example, after clicking Save Save Swatch Library as ASE, the standard window appears, but no matter what I try to name the file or where I try to save it, nothing happens. The window just sits open after I click Save. No error message...nothing. This must be something painfully simple. Any help is appreciated.
    I have already rebooted, tried other files, tried other swatches, and even reinstalled Illustrator. Previously created swatch files open without issue.

    I must say that I'm a bit confused as you are trying to make swatches out of illustrator but wanting to use them in indesign? Why not create the swatches from indesign instead or load them into indesign directly as Illustrator and Indesign can open the same swatch pallettes? You are creating more work.
    But if you must...
    Try deleting your preferences for Illustrator and then try saving your swatch pallette again and see if that helps.

  • No Load Option for ASE Files in PS 7.0?

    I am still using photoshop 7.0, and was looking to load some
    swatches from kuler, but I cannot! The only swatch files supported
    by this version of photoshop are ACO and ACT... am I missing
    something here.. or is this true?
    If it is, how can I make it load the ASE swatches as well?
    Thanks,
    -terra

    kuler currently works with Adobe Photoshop CS2 using ASE
    files. There is no support for ACO and ACT.

  • Is there any way to get this palette into photoshop CS6?

    I'm curious as to why Photoshop CS6 can't have a simple effective palette choice like this one from Fireworks?
    I'm an artist and this palette makes sense to me.  The standard issue pallette in Photoshop is a mess compared to this.
    Is there any way to get this palette into photoshop CS6?
    Thanks!

    If your talking about the Color Cubes from fireworks as shown in your screenshot, then yes.
    Save the swatches out of fireworks as an Adobe Swatch Exchange File (ASE) and then you can load them into photoshop
    in it's swatches panel like below.

  • 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.

  • Duplicate swatch problem.

    I work for a publishing company and we are running on Indesign CS. We print from Indesign and use Separations to make plates for our press. We print in red and blue ink, so we make red and blue plates.
    Our problem is that we keep getting Blue 2, Blue 3, etc. swatches added to the swatch palette. We don't know what is causing this problem because the CMYK value for the Blue 2 is the exact same as the Blue we print from.
    We use Ink Manager to make an alias as a work around, but we really want to know what causes these multiple instance of Blue to occur.
    Thanks in advance.

    I believe this JavaScript will work with CS. I use it often to merge down these kinds of duplicate swatches. I know for sure it works in CS2 and CS3.
    //DESCRIPTION: Merge Down Swatch Dupes
        ©Copyright 2006 PDS Associates
        This script must not be distributed without first obtaining written permission of:
        Dave Saunders, proprietor
        PDS Associates
        P.O. Box 127
        Allenhurst, NJ 07711-0127
        e-mail: [email protected]
    // Merges down duplicate swatches in either the active document
    // or the application defaults.
    if (app.documents.length > 0) {
      myTarg = app.activeDocument;
    } else {
      myTarg = app;
    var mySwatches = myTarg.swatches;
    var myNames = mySwatches.everyItem().name;
    myNames.sort();
    for (var j = myNames.length - 1; j >= 0; j--) {
      myParts = myNames[j].split(" ");
      if (myParts.length == 1) { continue }
      lastPart = myParts.pop();
      if ((isNaN(lastPart)) && (lastPart != "copy")) { continue }
      var mySwatch = myTarg.swatches.item(myParts.join(" "));
      if (mySwatch == null) { continue }
      mySwatches.item(myNames[j]).remove(mySwatch);
      Discussion: there are two sources of duplicate swatches and two naming schemes.
      If you bring into a document an item that uses named swatches that are present in
      the document but with different definitions, new swatches are created with names
      based on the original names with numbers appended after a space. This can result
      in very large numbers of swatches being created (I personally experienced a situation
      where importing a table resulted in over 8,500 swatches).
      However, you can also load swatches from a .ase file or another InDesign document.
      Swatches with conflicting names from the former are added with " copy" appended to
      their names. If that name already exists, a number is also added.
      This version of the script merges down either kind of duplicate to the original base
      swatch (that is, the one with the base name in the original document).
    To use the script in CS, copy and paste to a text editor and save as a plain text file with an appropriate name in the form YourName.js in the Scripts folder of the Presets folder of your InDesign CS folder (you could put it in a subfolder if you wish). Then to run the script, double-click its name in the Scripts palette.
    Dave

  • Saving gradient swatches

    I have been unable to save a gradient swatch. Is there a way to do this?
    Of course I can copy a gradient from one document to another, but not save an individual swatch as a .ase file.
    I have read, in a very reliable book on InDesign CS4,that this works but I can't make it happen. The Save Swatches option is grayed out until I add a regular swatch, and if I do this and select Save Swatches, only the non-gradients are saved.
    I have tried radial, linear, different angles multiple colors. grayscale etc.
    Thanks

    John,
    I hope it wasn't my book that indicated you could save gradients as ase files.
    You can't.
    The ase file format doesn't support gradient swatches.
    If it was my book, please tell me what page the error is on and I'll fix it in the next version.

  • Fireworks CS4 PC version won't recognize my .ase file.

    I can download my kuler swatches as an .ase file without problems. But when I go to Fireworks, I can't load the file into the Swatches palette. I tried "Add swatches" and "Replace swatches" in Fireworks, but Fireworks will only allow me to look for an .act or .gif file and doesn't see my .ase file.
    Fireworks CS4 doesn't have a "Load swatches" option, nor does it have a color library function like Illustrator. I'm stuck! How do I get my .ase swatches into Fireworks CS4, PC version?

    Thank you!
    I'm figuring this out. Does your saved theme in the online Kuler need to be marked as Public? Can it be saved as Private and still be found when I work with Kuler in Fireworks and Illustrator?

  • Are swatch files color managed?

    I can use Adobe Swatch Exchange to save a set of swatches from my swatches panel and send them to someone else. Does anyone know if this is color managed? If I set up a swatch which is C27 M60 Y100 K11 when working on a project I'm intending to print using GRACol 2006, and then send that file someone else who is working a project that he is going to print using SWOPv2, is the swatch going to get changed to C29 M63 Y100 K17 (which is the recipe for that same color in SWOP)?

    If you export swatches, the swatch numbers get exported unchanged and no profile is included—you can open an .ase file in a text app and see there's no evidence of a profile. So when you import the .ase into another document the original CMYK numbers are preserved no matter what your doc's color settings or assignments are. The preview of the swatches will depend on the destination document's profile assignment.
    and then send that file someone else who is working a project that he is going to print using SWOPv2
    If by file you mean an ID file with swatches (not an .ase swatch file), then the Color Settings Color Management Policy (when the doc was created) effect the document's swatches and colors when it is opened somewhere else.
    If the policy is Off the Working CMYK space is always used—assigned profiles are ignored.
    Preserve Embedded preserves the document's assigned profile and that profile, not the Working CMYK space, manages any CMYK color. Placed files also have their embedded profiles preserved.
    Preserve Numbers (ignore Linked Profiles) preserves the document's embedded profile but ignores any placed file's profile—it effectively assigns the document's profile to all placed CMYK files.
    Convert to Working Space converts native colors and swatches from the doc's assigned profile to the current Working CMYK space and assigns the working space to the document (the numbers change, appearance is preserved). Linked files have their profiles honored.

  • Convert CSV to Swatch Library?

    Hi everyone
    I have a list of 300+ colors that I need to make into a swatch library for Illustrator. The data looks like this:
    GREEN GRASS,127,187,0
    PALE YELLOW,241,235,135
    LIGHT YELLOW,238,231,93
    DAFFODIL,249,231,21
    MOONBEAM,249,223,22
    etc.
    It's RGB I think. In any case, I am just starting with Illustrator and I know NOTHING about scripting. Can anyone help me get aaaaalllll these colors into a swatch library, please? I am getting a migraine just thinking about putting them in one by one. LOL
    I found something here, but that didn't work for me. I get an error on processing on line 75. http://forums.adobe.com/message/2877951
    Error 24: app.doScript is not a function, Line 75 _> app.dpScript(speakThis, 1095978087); //AppleScript.
    I get as far as choosing the csv file, and then I get the error. I think this outputs as CMYK, but not sure. Does anyone know of another script, or can anyone help me out?
    Thanks,
    Gina

    Muppet's script was for InDesign -- I guess so it could save the swatches as an .ASE file. Illustrator's Javascript lacks this command ...
    Here is a variant, based upon MM's, but stripped of all ID specific stuff. This one creates your new swatches in the current document; it creates a new swatch group with the CSV file name.
    function main() {
         if (isOSX()) {
              var csvFile = File.openDialog('Select a CSV File', function (f) { return (f instanceof Folder) || f.name.match(/\.csv$/i);} );
         } else {
              var csvFile = File.openDialog('Select a CSV File','comma-separated-values(*.csv):*.csv;');
         if (csvFile != null) {
              fileArray = readInCSV(csvFile);
              var columns = fileArray[0].length;
              //alert('CSV file has ' + columns + ' columns…');
              var rows = fileArray.length;
              //alert('CSV file has ' + rows + ' rows…');
              if (columns == 4 && rows > 0) {
                   exchangeSwatches(csvFile);
              } else {
                   var mess = 'Incorrect CSV File?';
                   isOSX ? saySomething(mess) : alert(mess);
         } else {
              var mess = 'Ooops!!!';
              isOSX ? saySomething(mess) : alert(mess);
    main();
    function exchangeSwatches(csvFile) {
    //    var docRef = app.documents.add();
         var docRef = app.activeDocuments;
         var swatchgroup = docRef.swatchGroups.add();
         swatchgroup.name = csvFile.name;
         with (docRef) {    
            /*  for (var i = swatches.length-1; i >= 0; i--) {
                   swatches[i].remove();
              for (var a = 0; a < fileArray.length; a++) {
                   var n = fileArray[a][0]; // First Column is name              
                   if (n == 'Cyan' || n == 'Magenta' || n == 'Yellow' || n == 'Black') {         
                        n = n + '-???'; // Reserved swatch name;
                   r = parseFloat(fileArray[a][1]); // Second Column is Red
                   g = parseFloat(fileArray[a][2]); // Third Column is Green
                   b = parseFloat(fileArray[a][3]); // Forth Column is Bloo
                   if (r >= 0 && r <= 255 && g >= 0 && g <= 255 && b >= 0 && b <= 255) {
                     var color = new RGBColor;
                     color.red = r;
                     color.green = g;
                     color.blue = b;
                     var swatch = swatches.add();
                     swatch.name = n;
                     swatch.color = color;
                     swatchgroup.addSwatch(swatch);
                   } else {
                        var mess = 'Color values are out of range?';
                        isOSX ? saySomething(mess) : alert(mess);
    function readInCSV(fileObj) {
         var fileArray = new Array();
         fileObj.open('r');
         fileObj.seek(0, 0);
         while(!fileObj.eof) {
              var thisLine = fileObj.readln();
              var csvArray = thisLine.split(',');
              fileArray.push(csvArray);
         fileObj.close();
         return fileArray;
    function saySomething(stringObj) {
         var speakThis = 'I say, "' + stringObj + '"';
         alert(speakThis);
    function isOSX() {
      return $.os.match(/Macintosh/i);

  • Pantone colors in elements 12?

    Can I access Pantone colors from photoshop elements 12?  If so, how do I do it?  THanks!

    As far as i know the only way is to install the swatches or load the swatches from a folder on your computer and then use the Window>Swatches panel to load the swatches.
    Have you found some panotone swatches for photoshop?
    The swatches for photoshop usually have a .ACO or .ASE extension.

  • Does ucf.jar handle spaces in file names?

    As far as I can see, it does not:
    humber:zxpdir williamg$ find .
    ./foo
    ./foo/foo bar
    ./foo/foobar
    humber:zxpdir williamg$ java -Djsse.enableSNIExtension=false -jar ../../../adobesigningtoolkit/ucf.jar -package ../foo.zxp -C /Users/williamg/Projects/zxptesting/build/zxpdir/ .
    humber:zxpdir williamg$ unzip -l ../foo.zxp
    Archive:  ../foo.zxp
      Length     Date   Time    Name
           41  08-26-13 19:46   mimetype
            0  08-26-13 19:46   foo/foobar
           41                   2 files
    That appears to indicate that the file “foo/foobar” is being added to the zipfile, but that “foo/foo bar” is not.
    Is this a known bug, … and if so, is there an ETA for it to be fixed?
    As an aside: is there a way to determine the version number of the ucf.jar that I have? “-version” doesn't seem to be available on the command line.

    According to the documentation:
    “If you have created your product using earlier versions of these tools, or the free Creative Suite SDK, or if it is a script or  C++ plug-in, or some combination of these things, you can manually create a manifest MXI file and package your delivery files into a ZXP, using the command-line utility in the Packaging and Signing Toolkit. See the section Packaging Manually”
    (The link points to the section which indicates that the UCF command line tool should be used to create the package.)
    Is this documentation wrong?
    The Packager utility indicates that it supports the following types of content for Photoshop:
    Actions (ATN)
    Brushes (ABR)
    Gradients (GRD)
    Patterns (PAT)
    Scripts (JSX)
    Swatches (ACO, ASE)
    That does not include filter plug-ins (.8bf on Windows, .plugin on Mac), and so it does not apply to my use case.
    (Furthermore, it does not appear to be possible to run the packager tool from the command line, meaning that it is not useful to me since it would be very difficult to integrate it with our build system. Is it possible to run the Packager from the command line?)

Maybe you are looking for

  • Use internal table in Smartform

    Hi All, I want to use the internal table in program in smartform. For that i have declare that table in TABLES attribute of the function module and trying to declare that table in form interface in smartform.I have created one stucture in data dictio

  • Mixing 10.4 and 10.5 with Time Machine--not a good idea (?)

    I'm planning on installing 10.5 (aka Leopard) in a separate partition to tweak and trial it until its ready for prime time for me (for one thing the new X11 isn't fully up to speed and that's a show stopper for my business use of Leopard). It occurre

  • How to control not to confirm quantity in sales order schedule line

    Hi, We have a problem with confirmed quantity in sales order schedule line. When I reject a position in a sales order, confirmed quantity still remains with quantity ( diferent to 0). I need in some cases that system not to confirm quantity in schedu

  • Objects added to the stage are not animated by AnimatorFactory

    Hi all, the following code ist a very simple animation. I added an object to the stage by dragging it from the library. Then I applied code generated by "Copy motion as AS 3" and the animation works fine. However, if i add another object by instating

  • CWB Run Progress Report - Not working

    Hello Gurus, In CWB, I am unable to run Progress Report of the Plan. System hangs upon hitting "Run Report" after selecting the Plan for which the Progress Report is to be generated. (Eventually I need to close the browser) "BEN:CWB Plan context for