Why don't just use Cut (<Ctrl> + <X>) instead of Copy (<Ctrl> + <C>) to Clipboard?
Registered forum members do not see this ad.
i Want to make a command that will selectsimilar, copyclip and delete a selected 2d object.
macro SelectSimilar;_copyclip;Delete but want to make it as a lisp routine
Why don't just use Cut (<Ctrl> + <X>) instead of Copy (<Ctrl> + <C>) to Clipboard?
Regards,
Mircea
AutoCAD's happy user equation: FILEDIA + PICKADD² + PICKFIRST = 3
yea that would remove a step![]()
My issue is really what function do i use to set an object to a variable. where i can then select similar and cut.
Registered forum members do not see this ad.
Code:(defun c:FOO (/ ss) (if (setq ss (ssget "_:L")) (progn (command "._selectsimilar" ss "") (command "._cutclip") ) ) (princ) )
"Potential has a shelf life." - Margaret Atwood
Bookmarks