Edit Existing Swatch?

Hi. Yes, I did a search in Illustrator support for Edit Existing Swatch... But apparently that is far to eclectic an inquiry to bring up instructions on how to do so.
Can anyone tell me the steps to do so? (I do it ALL THE TIME in Flash, but Illustrator aparently likes for me to visit the support site.)
Sigh.

First, let me say thanks for the posts. I really appreciate it.
I'm getting a Swatch Options window when I double click (I was trying that already) but it's greyed out.
Normally, in flash all kinds of panels pop up. Like gradation panels (if appropriate) etc.
Here's the window. (I'm on a Mac.)

Similar Messages

  • How to edit gradient swatch

    I make a gradient and drag it to the swatches palette and name it.
    If I want to edit it I select it and make a change in the gradient palette but the instant I touch anything the gradient is no longer selected and my edits can only be saved by creating a new swatch. I will have too many swatches this way.
    So how does one edit an existing gradient swatch?
    Thanks for any help.

    Yeah. Intuitive, isn't it? If you doubleClick a Grad Swatch, the Edit Swatch dialog opens, which does not provide Gradient sliders.
    Edit the grad in the grad palette. Press and hold Alt while you drag it from the grad palette and drop it onto the existing Swatch.
    JET

  • How to Edit Existing  PDF

    Hi... i am try to edit existing pdf in itext any one can help me this sending code.......

    Using Itext i want to remove some content in the PDF
    This is my code i want to Edit or Remove some text in the Pdf
    package view;
    //import com.itextpdf.text.BaseColor;
    //import com.itextpdf.text.DocumentException;
    //import com.itextpdf.text.pdf.PdfContentByte;
    //import com.itextpdf.text.pdf.PdfCopyFields;
    //import com.itextpdf.text.pdf.PdfStamper;
    import com.lowagie.text.Document;
    import com.lowagie.text.DocumentException;
    import com.lowagie.text.pdf.PdfContentByte;
    import com.lowagie.text.pdf.PdfCopy;
    import com.lowagie.text.pdf.PdfCopyFields;
    import com.lowagie.text.pdf.PdfDictionary;
    import com.lowagie.text.pdf.PdfImportedPage;
    import com.lowagie.text.pdf.PdfName;
    import com.lowagie.text.pdf.PdfNumber;
    import com.lowagie.text.pdf.PdfReader;
    import com.lowagie.text.pdf.PdfStamper;
    import java.awt.Color;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.List;
    public class SplitingFlat {
        public static void main(String[] args) {
            String fileName =
                "D://OMR//OMRpdf//FlatFlies//EligibilityLists_Flat.pdf";
            splitPDFFile(fileName);
            rotateFlatPDF();
            markPdf();
            mergeFlatPdf();
        public static List splitPDFFile(String fileName) {
            List list = new ArrayList();
            int startPageNo[] =
            { 1, 29, 47, 67, 85, 133, 179, 197, 225, 243, 277, 295, 319, 337, 365,
              393, 419, 439, 471, 491, 513 };
            int endPageNo[] =
            { 28, 46, 66, 84, 132, 178, 196, 224, 242, 276, 294, 318, 336, 364,
              392, 418, 438, 470, 490, 512, 532 };
            try { /**
                     * Read the input PDF file
                PdfReader reader = new PdfReader(fileName);
                int totalPages = reader.getNumberOfPages();
                int split = 0;
                for (int i = 0; i < endPageNo.length; i++) {
                    for (int pageNum = 1; pageNum <= totalPages;
                         pageNum += endPageNo[i]) {
                        if (pageNum == 1) {
                            pageNum = startPageNo[i];
                        split++;
                        String outFile =
                            "D://OMR//OMRpdf//flat//split//Flat-split-" + split +
                            ".pdf";
                        Document document =
                            new Document(reader.getPageSizeWithRotation(1));
                        PdfCopy writer =
                            new PdfCopy(document, new FileOutputStream(outFile));
                        document.open();
                        int tempPageCount = 0;
                        int number = endPageNo[i] - pageNum;
                        for (int offset = 0;
                             offset < number && (pageNum + offset) <= totalPages;
                             offset++) {
                            PdfImportedPage page =
                                writer.getImportedPage(reader, pageNum + offset);
                            writer.addPage(page);
                            tempPageCount++;
                        document.close();
                        writer.close();
                        list.add(outFile);
                        break;
            } catch (Exception e) {
                e.printStackTrace();
            return list;
        private static void rotateFlatPDF() {
            String pdfFolderPath = "D:\\OMR\\OMRpdf\\flat\\split\\";
            int split = 1;
            File pdfFolder = new File(pdfFolderPath);
            if (pdfFolder != null && pdfFolder.isDirectory()) {
                String[] pdfFileNames = pdfFolder.list();
                if (pdfFileNames != null && pdfFileNames.length > 0) {
                    int documentNumber = 0;
                    for (String pdfFileName : pdfFileNames) {
                        File pdfFile =
                            new File(pdfFolderPath + File.separator + pdfFileName);
                        if (pdfFile.isFile()) {
                            documentNumber++;
                            PdfReader pdfReader;
                            String opFile =
                                "D:\\OMR\\OMRpdf\\flat\\rotate\\" + "DocumentSplitRotate-" +
                                split + ".pdf";
                            try {
                                pdfReader =
                                        new PdfReader(pdfFolderPath + File.separator +
                                                      pdfFileName);
                                int n = pdfReader.getNumberOfPages();
                                int rot;
                                PdfDictionary pageDict;
                                for (int i = 1; i <= n; i++) {
                                    rot = pdfReader.getPageRotation(i);
                                    pageDict = pdfReader.getPageN(i);
                                    pageDict.put(PdfName.ROTATE,
                                                 new PdfNumber(rot - 90));
                                PdfStamper stamper =
                                    new PdfStamper(pdfReader, new FileOutputStream(opFile));
                                stamper.close();
                                pdfReader.close();
                                split++;
                            } catch (IOException e) {
                            } catch (DocumentException e) {
        public static void markPdf() {
            try {
                //Flat
                String pdfFolderPath = "D:\\OMR\\OMRpdf\\flat\\rotate";
                File pdfFolder = new File(pdfFolderPath);
                if (pdfFolder != null && pdfFolder.isDirectory()) {
                    String[] pdfFileNames = pdfFolder.list();
                    if (pdfFileNames != null && pdfFileNames.length > 0) {
                        int documentNumber = 0;
                        for (String pdfFileName : pdfFileNames) {
                            File pdfFile =
                                new File(pdfFolderPath + File.separator +
                                         pdfFileName);
                            if (pdfFile.isFile()) {
                                documentNumber++;
                                PdfReader pdfReader =
                                    new PdfReader(pdfFolderPath + File.separator +
                                                  pdfFileName);
                                int pageCount = pdfReader.getNumberOfPages();
                                    String outputFileName =
        "D:\\OMR\\OMRpdf\\flat\\mark\\" +File.separator +pdfFileName.substring(0, pdfFileName.lastIndexOf(".pdf")) +
                                "_OMR_Marked.pdf";
                                FileOutputStream fileOutputStream =
                                new FileOutputStream(outputFileName);
                                PdfStamper pdfStamper =
                                new PdfStamper(pdfReader,
                                               fileOutputStream);
                                for (int i = 1; i <= pageCount; i++) {
                                PdfContentByte cb =
                                    pdfStamper.getOverContent(i);
                                cb.beginText();
                                cb.setColorStroke(Color.RED);
                                if (OMRMarkingUtilityFlatfold.isFlatZone1MarkingEnabled(documentNumber,
                                                                                i))
                                    OMRMarkingUtilityFlatfold.drawFlatOMRMark(cb,
                                                                      1, i,
                                                                      pageCount);
                                if (OMRMarkingUtilityFlatfold.isFlatZone2MarkingEnabled(documentNumber,
                                                                                i)) {
                                    PdfContentByte cb2 =
                                        pdfStamper.getOverContent(pageCount);
                                    OMRMarkingUtilityFlatfold.drawFlatOMRMark(cb2,
                                                                      2, i,
                                                                      pageCount);
                                if (OMRMarkingUtilityFlatfold.isFlatZone3MarkingEnabled(documentNumber,
                                                                                i)) {
                                    PdfContentByte cb3 =
                                        pdfStamper.getOverContent(1);
                                    OMRMarkingUtilityFlatfold.drawFlatOMRMark(cb3,
                                                                      3, i,
                                                                      pageCount);
                                if (OMRMarkingUtilityFlatfold.isFlatZone4MarkingEnabled(documentNumber,
                                                                                i))
                                    cb.endText();
                                pdfStamper.close();
                                fileOutputStream.close();
            catch (IOException ioe) {
                ioe.printStackTrace();
            } catch (DocumentException de) {
                de.printStackTrace();
        private static void mergeFlatPdf() {
            try {
                PdfCopyFields copy =
                    new PdfCopyFields(new FileOutputStream("D:\\OMR\\OMRpdf\\flat\\merge\\output1.pdf"));
                String pdfFolderPath = "D:\\OMR\\OMRpdf\\flat\\mark\\";
                File pdfFolder = new File(pdfFolderPath);
                if (pdfFolder != null && pdfFolder.isDirectory()) {
                    String[] pdfFileNames = pdfFolder.list();
                    if (pdfFileNames != null && pdfFileNames.length > 0) {
                        for (String pdfFileName : pdfFileNames) {
                            copy.addDocument(new PdfReader(pdfFolderPath +
                                                           pdfFileName));
                copy.close();
            } catch (IOException e) {
            } catch (DocumentException e) {
    package view;
    import com.lowagie.text.pdf.PdfContentByte;
    import org.apache.log4j.Logger;
    public class OMRMarkingUtilityFlatfold {
        private static final Logger logger =
            Logger.getLogger(OMRMarkingUtilityFlatfold.class);
        //public static final int Flat_Zone_X_Position     = 14;    // 0.1875 inches
        public static final int Flat_OMR_Mark_Thickness = 1; // 0.01   inches
        public static final int Flat_OMR_Mark_Length = 29; // 0.3    inches
        public OMRMarkingUtilityFlatfold() {
            super();
        public static boolean isFlatZone1MarkingEnabled(int documentNumber,
                                                        int pageNumber) {
            boolean flatZone1 = true;
            //        if (pageNumber % 2 != 0)
            //            trifoldZone4 = true;
            return flatZone1;
        public static boolean isFlatZone2MarkingEnabled(int documentNumber,
                                                        int pageNumber) {
            boolean flatZone2 = true;
            //        if (pageNumber % 2 != 0)
            //            trifoldZone4 = true;
            return flatZone2;
        public static boolean isFlatZone3MarkingEnabled(int documentNumber,
                                                        int pageNumber) {
            boolean flatZone3 = true;
            //        if (pageNumber % 2 != 0)
            //            trifoldZone4 = true;
            return flatZone3;
        public static boolean isFlatZone4MarkingEnabled(int documentNumber,
                                                        int pageNumber) {
            boolean flatZone4 = true;
            //        if (pageNumber % 2 != 0)
            //            trifoldZone4 = true;
            return flatZone4;
        public static int getFlat_Zone_X_Position() {
            return getFlat_Zone_X_Position();
        public static int getFlat_Zone3YPosition() {
            return getFlat_Zone3YPosition();
        public static int getFlat_Zone4YPosition() {
            return getFlat_Zone4YPosition();
        public static void drawFlatOMRMark(PdfContentByte cb, int zone,
                                           int pageNumber, int pageCount) {
            float x;
            float y;
            System.out.println(pageNumber);
            if (pageNumber == 1) {
                x = 14;
            } else {
                x = 7;
            switch (zone) {
            case 1:
                if (pageNumber == 1)
                    y = 689;
                else {
                    y = 688;
                break;
            case 2:
                y = 679;
                break;
            case 3:
                x = 14;
                y = 670;
                break;
            case 4:
                if (pageNumber == 1)
                    y = 661;
                else {
                    y = 660;
                break;
            default:
                y = 0;
                break;
            cb.moveTo(x, y);
            cb.lineTo(x + Flat_OMR_Mark_Length, y);
            cb.stroke();

  • I am looking for a good program to edit existing websites for about $99.00

    I am looking for a good program to edit existing websites for about $99.00 or less, any suggestions?
    Thanks,
    New MacBook owner.
    Martin

    Welcome to Apple Discussions!
    http://www.barebones.com 's Textwrangler. Use http://www.anybrowser.org/ as a guide for good HTML composition.
    If a web editor does not give you power to do full text editing and claims to be WYSIWYG, don't believe it. Chances are, it uses assumed standards of specific browsers, which are not fully http://www.w3.org/ compliant.

  • To allow to edit existing iDoc segments or to add new segments.

    In order to re-process iDoc's there is necessary forst to manipulate the record. A custom transaction(WE19) is required to allow to edit existing iDoc segments or to add new segments without creatinga new idoc.
    any clue..
    Regrads,
    Ramya

    hi ramya,
        In the test tool WE19 v can able to see the
    copy and existing idoc.
    create an idoc based on an idoc type.
    create an idoc based on a message type.
    but mostly v use the first option. Like modify the existing idoc to suit our requirement
    Regards....
    Arun.
    Reward points if useful.

  • Editing existing PDF documents

    I often receive PDF forms that require information to be added and then returned to the sender. How can you open a PDF file in Acrobat such that you can type in the necessary information and then resave it as a PDF file? Note that I have no design input or control for the original PDF documents.

    You can add text form fields (under TOOLS in AA8), select the text touchup tool and hold the ctrl key as you place the cursor, edit existing text with this tool (not easy -- often seems to mess up), or use the Typewriter tool. Basically, editing a PDF is not recommended except for minor changes.
    You could also use the commenting tools.

  • Custom reports / edit existing reports

    I would like to edit some existing reports in Service Desk. Many report do what I'm looking for except for one thing. All 'closed reports' report the closed/resolved step in the workflow. We have a validation step on which I would like to report. How can I edit existing reports to match this? We are currently running 6.2 but can upgrade to 6.5 if needed.
    With the report builder in 6.5 is it possible to edit these reports without having to make them from scratch?

    Do you see any error when you run the ETL, i.e. the Java ETL embedded with the app server? 

  • I can't edit existing Word docs

    I can't edit existing Word docs with *any* of the five Word-processing apps I downloaded (free). I can edit documents I started on my ipad, but not on my computer. I can view them just fine though. Is there an app that lets me edit existing docs, which I've transferred from pc? Or, is my ipad 2 broken?

    Have a look at the following:
    http://itunes.apple.com/sg/app/quickoffice-pro-hd-edit-office/id376212724?mt=8&l s=1
    http://itunes.apple.com/sg/app/office2-hd/id364361728?mt=8&ls=1
    http://itunes.apple.com/sg/app/documents-to-go-premium-office/id317107309?mt=8&l s=1
    http://itunes.apple.com/sg/app/polaris-office/id513188658?mt=8&ls=1

  • Edit existing pdf file

    Hi all ,
    I'm working a on  C# console application , that is used for editing existing pdf files , by shifting pdf document paragraphs down , adding text style..etc
    1. Is there a way that i can do that with acrobat sdk ?? Regarding that i'm editing an existing pdf file i.e the new result will overwrite the old one..
    2. Is there some kind of dll  , that i can use in my application to launch to Acrobat Pro XI so that i can use it's functions in my project ??
    Thank you

    Not everything you can do in Acrobat can easily be automated. There are
    different APIs in the Acrobat SDK, and the IAC interface has some serious
    limitations. Some of which you can get around by using the JavaScript
    bridge, but still, you wont have access to the page content. Only a plug-in
    can access that data, and still, moving "paragraphs" around is a huge
    tasks. The PDF file does not organize it's content in terms of words,
    sentences or paragraphs, so you would have to provide functionality that
    would be able to identify what you consider to be a paragraph. That is not
    a trivial task. You may be able to export your PDF content as a Word
    document, then do all that "magic" in Word, and then convert the document
    back to PDF (or go straight to the original document and do all the work in
    that).
    Karl Heinz Kremer
    PDF Acrobatics Without a Net
    [email protected]
    http://www.khkonsulting.com

  • Iphoto crashes when I try to edit existing (old) slideshow.

    iphoto crashes when I try to edit existing (old) slideshow. If I create a new one I can edit them ok, it seems to be older slideshows I have the problem with. I am happy to delete slideshow but even if i try to right click I just get whirly wheel of death then need to force quit. Am running Maverick and latest version of iphoto software...

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    For this step, the title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    In the top right corner of the Console window, there's a search box labeled Filter. Initially the words "String Matching" are shown in that box. Enter the name of the crashed application or process. For example, if iTunes crashed, you would enter "iTunes" (without the quotes.)
    Each message in the log begins with the date and time when it was entered. Select the messages from the time of the last crash, if any. Copy them to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    ☞ The log contains a vast amount of information, almost all of which is irrelevant to solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    ☞ Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, select
              DIAGNOSTIC AND USAGE INFORMATION ▹ User Diagnostic Reports
    (not Diagnostic and Usage Messages) from the log list on the left. There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points down. You'll see a list of crash reports. The name of each report starts with the name of the process, and ends with ".crash". Select the most recent report related to the process in question. The contents of the report will appear on the right. Use copy and paste to post the entire contents—the text, not a screenshot.
    I know the report is long, maybe several hundred lines. Please post all of it anyway.
    If you don't see any reports listed, but you know there was a crash, you may have chosen Diagnostic and Usage Messages from the log list. Choose DIAGNOSTIC AND USAGE INFORMATION instead.
    In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.)
    Please don’t post other kinds of diagnostic report—they're very long and rarely helpful.

  • Cannot add new selectors or edit existing CSS file with my Mac

    I have just subscibed to Dreamweaver CC and I cannot add new selectors or edit the exisiting "main" css that comes with the tutorial. When asked to add selector a box appears but when I press enter/return twice it disappears. Also there is no option to edit existing properties. for example, to change a font color I pick color but there is no enter or "OK" option. I'm very puzzled and stuck.

    The trial version of Dreamweaver is fully functional. The only limitation is that it stops working after 30 days. If you're having problems with getting the software to work correctly, it might be a good idea to try posting a question in the Downloading, Installing, Setting Up forum, mentioning the fact that you've already posted here (otherwise, they might just transfer you back to this or one of the other Dreamweaver forums).
    If you can't make changes to files, it might have something to do with permissions or the user account that you've logged onto the computer with.
    When asking for help in the other forum, mention your operating system, and which version you're using. The problem might be related to your computer setup.

  • Cannot add new contact or edit existing one

    Cannot add new contact or edit existing one. TH GSM, curve 8900, OS v5.0.01067, file free none ,battery pull didn't fix the problem, applications Google maps 3.0.2, whatsapp 2.6.2177. Device even freezes when trying to add or edit . Thanks

    I am having the exact same problem!!  I hope we get an answer.

  • No longer edit existing messages

    I updated my iphone 4 to IOS7, now I can no longer edit existing messages. Is there a setup comand now?

    We all face the same problem.
    Why did Apple do this ?
    It was handy to delete parts of a message string which gets too long, while keeping other parts.

  • HT204266 Does Text Edit exist for iPad?

    Does "Text Edit" exist for iPad?

    This is the iPod touch forum.
    What do you mean by "Text Edit"?
    There are iPad text editing apps available.

  • Edit custom swatch library

    Hi All,
    This may be a stupid question:
    Once I have created and saved a custom swatch library - lets call it "custom"
    How would I add a new colour to "custom" - or edit a colour value in "custom" - is this new swatch library locked?
    Most frustrating.
    Thank you

    open the library file, just through File > Open. add a swatch to the document. save the document swatches as swatch library

Maybe you are looking for