Message 1 of 14

Not applicable
05-22-2015
02:16 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Can anyone help me with this lisp?
It's supposed to erase text objects within an imaginary rectancle, coordinates 15,35 to 295,40 by window type select so only the text objects fully enclosed within the rectangle get erased.
The lisp I'm trying to create fails on the second line in Vlide but I cannot see the error(s)
- Simon
(defun C:DTTX (/ ss1) (if (setq ss1 (ssget '(15 35) '(295 40) '((0 . "TEXT"))) (command "_.erase" ss1 "") (alert "TEXT Not Found") ) (princ) )
Solved! Go to Solution.