I have one point paths in my AI drawing. How do I find all of them and delete them quickly?
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.
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();
}
North America
Europe, Middle East and Africa
Asia Pacific