archkre Posted April 4, 2006 Share Posted April 4, 2006 How do I do an Autolisp for 2006 in which I can include the answer YES for Mirror command in a single step, please? Thank you! Link to comment Share on other sites More sharing options...
Onslaught Posted April 4, 2006 Share Posted April 4, 2006 mirror - "NO" answer (defun c:mn() (setq no (ssget)) (command ".cmdecho" "1" ".mirror" no "" pause pause "n" ".cmdecho" "0")(princ)) mirror - "YES" answer (defun c:my() (setq yes (ssget)) (command ".cmdecho" "1" ".mirror" yes "" pause pause "y" ".cmdecho" "0")(princ)) ...hope this helps Link to comment Share on other sites More sharing options...
archkre Posted April 4, 2006 Author Share Posted April 4, 2006 Thanks a lot! Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now