Acad.pgp - Command Alias Editor in Map 3D 2019

Acad.pgp - Command Alias Editor in Map 3D 2019

Anonymous
Not applicable
767 Views
1 Reply
Message 1 of 2

Acad.pgp - Command Alias Editor in Map 3D 2019

Anonymous
Not applicable

Upgraded finally from Map 2015 to Map 2019. I cannot get my acad.pgp from 2015 to migrate settings into the 2019 install.

Also tried using the Command Alias Editor in 2019 and will not save changes.  I'm a long time user (since Acad 12) and 

usually have no problem getting my aliases over to new versions. Have already installed the 0.1 Update for Map 3D 2019.

Thank you.

0 Likes
768 Views
1 Reply
Reply (1)
Message 2 of 2

pendean
Community Legend
Community Legend
To edit the pgp file in use by your session, at the command line, type this:

(startapp "notepad" (findfile "acad.pgp"))

Don't forget to reload he PGP file with REINIT command.

Or save the following as a LISP file and use it:

(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