Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/20/2022 in all areas

  1. Is it coming up behind the AutoCAD window, or off screen? I've had similar issues with HELP, and F2 and the START screen failing to function. (not hiding behind or off screen). Only a SAVE, QUIT, and then restart the program is going to fix that. This issue has persisted from 1019 through 2022 versions for me.
    1 point
  2. Something like this. (setq a 3) ;size to test (if (setq ss (ssget '((0 . "*POLYLINE")(70 . 1)))) ;select only closed poly for correct area (foreach poly (vl-remove-if 'listp (mapcar 'cadr (ssnamex ss))) (if (< (vla-get-area (vlax-ename->vla-object poly)) a) (ssdel poly SS) ;remove any polylines that are to small ) ) )
    1 point
×
×
  • Create New...