stevsmith Posted April 17, 2009 Posted April 17, 2009 Hi people. When i use the mirror command, how can I change the default "erase source objects" to yes instead of No. Quote
fuccaro Posted April 17, 2009 Posted April 17, 2009 Make your own command and in CUI instruct AutoCAD to start your version each time you invoke the mirror command. I have no AutoCAD for the moment so I can't offer you a real solution, but I would write a Lisp routine to deal with the command prompts. You can suppress that "erase..." prompt at all. Quote
fuccaro Posted April 17, 2009 Posted April 17, 2009 Try this: (defun c:MyMirror() (command "_Mirror" (ssget) "") (command (setq a (getpoint)) (getpoint a) "Y") ) Quote
stevsmith Posted April 17, 2009 Author Posted April 17, 2009 Thanks fuccaro, I'll give that a try. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.