Anuncios

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

pendean
en respuesta a: chriscowgill7373

OR try this LISP and skip trying to remember to run REINIT command after esditing the PGP file

;;Edit PGP file then REINIT
(defun c:editpgp(/ pgpfile);command alias editing
(setq pgpfile (strcat "notepad " (findfile "acad.pgp")))
(setvar "re-init" 16)
(prompt "\nACAD.PGP...reinitialized. ")
(princ)
) ;end