
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi everyone. Super new to the LISP routines so here is my problem. We have a standard routine here at work to clean drawings before they go out to our clients. So far I have this:
(defun C:TestRun ()
(command "purge" "r" "*" "N" "")
(command "-purge" "r" "*" "N" "")
(command "overkill" "all" "")
(command "audit" "y" "")
(command "-scalelistedit" "d" "")
(princ))
My issue is that I receive a prompt when it hits the overkill part, which I would like to automate. There is also the issue with the "-scalelistedit" where the command runs but at the end of the LISP I remain in the options part of the "-scalelistedit" command.
We are using AutoCAD 2016.
Any help I could get with this issue would be greatly appreciated. Thanks
Solved! Go to Solution.