Anuncios

The Autodesk Community Forums has a new look. Read more about what's changed on the Community Announcements board.

cadffm
en respuesta a: jdfnnl

You disabled the quickmode (with "all objects" as default) a year ago,

and now you want to use the standard mode with pre-defined "all",

right?

 

Set up a menumakro is simple

take the original ^C^C_trim and add your inputs

^C^C_trim;_all;; should works

 

If you like to change the command "trim", you need to use programming.

 

In Lisp for example, undefine trim command in acaddoc.lsp, (command "_.undefine" "TRIM")

and set up a new one (defun c:TRIM nil (command "_.TRIM" "_all" "")(princ))

Sebastian