Skip navigation
Currently Being Moderated

Fin Graphic Objects

Jul 19, 2012 9:46 AM

Tags: #illustrator #cs5 #adobe #mac #path #objects

I have one point paths in my AI drawing. How do I find all of them and delete them quickly?

 
Replies
  • Currently Being Moderated
    Jul 19, 2012 9:59 AM   in reply to kcfi

    Object>Path>Clean Up

     
    |
    Mark as:
  • Currently Being Moderated
    Jul 19, 2012 11:53 AM   in reply to kcfi

    Select->Object->Stray Points

     
    |
    Mark as:
  • Currently Being Moderated
    Jul 19, 2012 12:00 PM   in reply to kcfi

    kfci,

     

    You may see whether Select>Object>has something that sets them apart from everything else, and use that.

     
    |
    Mark as:
  • Currently Being Moderated
    Jul 19, 2012 12:24 PM   in reply to kcfi

    On way might be to go to Outline view (Cmd(Ctrl)-Y) and look around for any small x marks which indicate an anchor point.

     
    |
    Mark as:
  • Currently Being Moderated
    Jul 19, 2012 12:27 PM   in reply to kcfi

    that might be a 2-point path, round cap, 1 anchor over the other

     
    |
    Mark as:
  • Currently Being Moderated
    Jul 19, 2012 12:31 PM   in reply to CarlosCanto

    That would be my guess. In the early days of PostScript that was a cheater way of making a circle using only two anchor points instead of 4 or 5. Just had to adjust the size of the stroke. At my old workplace that was the way we did it for the first traffic maps we did.

     
    |
    Mark as:
  • Currently Being Moderated
    Jul 19, 2012 1:05 PM   in reply to kcfi

    Have you ever use a script?  Here's one that will do what you want. Copy and Paste into a text editor and save as a .jsx file (plain text).

     

     

    #target illustrator
     
    // deletes pathItems smaller than the supplied length
     
    var idoc = app.activeDocument;
    var howLong = prompt ("Enter the size in points of small paths to be deleted", 2, "Delete Small Paths");
     
    for (i=0 ; i< idoc.pathItems.length; i++)
         {
              var ipath = idoc.pathItems[i]
                   if ( ipath.width < howLong && ipath.height < howLong)
                        {
                             ipath.selected = true;
                        }
         }
     
    app.redraw(); 
     
    if(confirm ("Proceed to delete selected items?", "yes", "Confirm Delete"))
         {
              app.cut();
         }
    
     
    |
    Mark as:
  • Currently Being Moderated
    Jul 19, 2012 1:10 PM   in reply to kcfi

    I would think the only would be to write a script unless Carlos Or larry decide they want to write one or if obne exist. Visit the illustrator scripting and see if they would help you.

     
    |
    Mark as:
  • Currently Being Moderated
    Jul 19, 2012 1:11 PM   in reply to Wade_Zimmerman

    As I spoke.

     
    |
    Mark as:
  • Currently Being Moderated
    Jul 19, 2012 2:34 PM   in reply to Larry G. Schneider

    that script looks awfuly familiar

     
    |
    Mark as:
  • Currently Being Moderated
    Jul 19, 2012 4:56 PM   in reply to CarlosCanto

    You probably wrote it.

     
    |
    Mark as:

More Like This

  • Retrieving data ...

Bookmarked By (0)

Answers + Points = Status

  • 10 points awarded for Correct Answers
  • 5 points awarded for Helpful Answers
  • 10,000+ points
  • 1,001-10,000 points
  • 501-1,000 points
  • 5-500 points