hi ,
i want to write a lisp which opens ACAD.PGP file directly,
i write this command but didn't run it to open acad.pgp ,
i don't know where i am wrong..
THANKS in advance..
Solved! Go to Solution.
Solved by hgasty1001. Go to Solution.
Hi,
You need quote (double) the file name: (command "ai_editcustfile" "acad.pgp")
Gaston Nunez
I think that what you are looking for already exists.
On the Manage Tab > Customization panel and click the PGP button or use the command AI_EDITCUSTFILE as shown in the attached picture.
Or use the ALIAS EDIT command as was already posted...
I figured I'd put my two cents
(DEFUN C:PGP () (startapp "notepad" "C:\\Users\\<username>\\AppData\\Roaming\\Autodesk\\AutoCAD 2014\\R19.1\\enu\\Support\\acad.pgp")
A bit late but this will work also.
(startapp "notepad" (findfile "acad.pgp"))
Can't find what you're looking for? Ask the community or share your knowledge.