Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
i have a lisp routine to trim scribe lines and add circles but i need something to select everything inside the yellow circle and delete it, then delete the circle.
i have the code to select all my circles but am struggling with the rest
(if (setq ss (ssget "_X" '((0 . "CIRCLE") (8 . "TEXT"))))
(progn ; then
(repeat (setq n (sslength ss))
(setq
cir (ssname ss (setq n (1- n)))
)
)
); progn
)
i attached the whole code and the dxf i am working with
thanks
Solved! Go to Solution.