• This forum is the machine-generated translation of www.cad3d.it/forum1 - the Italian design community. Several terms are not translated correctly.

command automation eliminations

  • Thread starter Thread starter brizzo1982
  • Start date Start date

brizzo1982

Guest
Good evening, everyone.
I would kindly recommend how to "automate" the command -elimina-, autocad 2010.
In plain words, through the -recorder command- I recorded a custom command that executes in the order:
- verify and correct errors in the table;
- eliminate everything;
- zoom extensions;
- Save.

the peeling is that when processing the command -elimina-, the software opens the command screen and by hand I have to select the option -elimina all- and then -elimina all entries-.

How can I bypass it automatically? ? ?

Thank you all! :finger:
 
create a lisp or button in autocad with this

(defun c:sav ()
(command "filedia" "0")
(command "_audit"_y)
(command "_purge" "_all" "*" "n")
(command "_purge" "_all" "*" "n")
(command "_purge" "_all" "*" "n")
(command "zoom" e)
(command "_qsave")
(command "filedia" "1")
)

typing "sav" automatically executes all commands in succession
 
Well, what to say... thank you so much to both!! !
I think I will propend for the lisp, so that I can also create a "savc" that at the end also closes me the table...and so going macro I can throw it on x boards and "punish" everything...

Thank you again.

Good day
 

Forum statistics

Threads
44,997
Messages
339,767
Members
4
Latest member
ibt

Members online

No members online now.
Back
Top