How do you change the .pgp or command alias prompts to my own custom ones I like? For example EX is extend, and I want that Explode, and X for Extend.
Thanks for any help
Another way is to create small lisp functions, the advantage of this being that you can add options to your short commands, such as ZOOM WINDOW (with the PGP file, you can only do ZOOM)
(defun c:ZW () (command "._zoom" "_W")) (defun c:X () (command "._explode")) (defun c:P () (command "._plot")) (defun c:Z8 () (command "._zoom" "_S" "0.8x"))
Cheers.
Scot-65
A gift of extraordinary Common Sense does not require an Acronym Suffix to be added to my given name.
Hi @bnickas041774,
As @Patchy & @Jonathan3891 said, you can use the command "AliasEdit" either by typing the command or going to the express tab > Tools Panel > Alias edit - and then edit the aliases one by one..
- To use a custom *.pgp file that you alredy have, in the same window of the "aliasedit" command got to File > Import and select your .pgp file (this is safer than overwriting the current acad.pgp manually which could cause you to lose the aliases of the new commands added in newer relaeses of autocad in case the pgp file belonged to an earlier release..)
- If you want to edit the Acd.pgp manually (Not Recommended): go to Manage tab > Customization Panel > Edit Aliases. But note that there are several points to consider, you can read about them in these articles: Artcle 1; Article 2.
@rkmcswain Approach was a little different, he used LISP to define new commands with shorter names that call the original ones; which also works perfectly..
Can't find what you're looking for? Ask the community or share your knowledge.