Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi!!
I've found this useful lisp to copy elements into the current drawing.
(defun c:nc ( / nc-cmd )
(setq nc-cmd (command "_.ncopy" "\\" (command) ))
(cond
((= nc-cmd nil) (prompt "\nMissed.. Try again!\n")(c:nc))
);cond
(princ)
)
The thing is that I have to select one object at a time..
Is there a way to select with the mouse window selection all object that we want and then execute the same command for each object? 🙂
Many many thanks in advance 🙂
Solved! Go to Solution.