Command alias and system variable editors

RAFUSE
Advocate
Advocate

Command alias and system variable editors

RAFUSE
Advocate
Advocate

This has come up in my wanderings.

 

Go to Express - Tools-  and there they are at the top of the picks.  Simple(st) way to change commands or sys variables.  You can even print out a listing.

 

Most of us "older" Autocad users know about these but the newer folk may not.

 

RAFUSE

0 Likes
Reply
585 Views
2 Replies
Replies (2)

kcobabe
Collaborator
Collaborator

I still use the old school way of opening the file in a text editor and changing them.  That way I can copy the old ones and place a ";;" before them so I can always change them back to the original state.  Never really have had to though, but I like keeping this where I can get the original.


R10 - 2020 ACAD
2008 - 2020 Civil 3D
2014 - 2020 Plant 3D
2014 - 2020 Revit
V8i - V8i SS4 Microstation
Infraworks
2018-2020 Inventor
2020 Navisworks
0 Likes

pendean
Community Legend
Community Legend
I prefer a text editor too, my old lisp still works:

(defun c:gp(/ pgpfile);command alias editing
(setq pgpfile (strcat "notepad " (findfile "acad.pgp")))
(setvar "re-init" 16)
(prompt "\nACAD.PGP...reinitialized. ")
(princ)
) ;end
0 Likes