Lisp help

Lisp help

Anonymous
Not applicable
795 Views
4 Replies
Message 1 of 5

Lisp help

Anonymous
Not applicable

autocad menu.JPG

I have been successful at adding these tools to my menu; Drawing Scale, Fasteners and Utility.

I have tried to add the path to all lisp and autocad drawings associated with these tools.

Would someone please let me know where the paths should be. I have been using these since R12.

Thanks,

Gary

0 Likes
796 Views
4 Replies
Replies (4)
Message 2 of 5

imadHabash
Mentor
Mentor

Hi and welcome to AutoDesk Forum,

 

i suggest to use APPLOAD command then add your lisps  to the startup suite.

 

g.png

 

try it...

 

Imad Habash

EESignature

0 Likes
Message 3 of 5

Kent1Cooper
Consultant
Consultant

@Anonymous wrote:

 

....

I have tried to add the path to all lisp and autocad drawings associated with these tools.

Would someone please let me know where the paths should be. ....


If I understand correctly:

SFSPlistAdd.png

Kent Cooper, AIA
0 Likes
Message 4 of 5

Shneuph
Collaborator
Collaborator

Also, drawing and other support file paths should be added here. in the options menu.

 

Support Paths.png

 

 

---sig---------------------------------------
'(83 104 110 101 117 112 104 64 71 109 97 105 108 46 99 111 109)
0 Likes
Message 5 of 5

scot-65
Advisor
Advisor
And yet another method (without the 'poor-mans' startup suite
and Support File Search Path):

Declare a hard path prefix(es) inside the S::STARTUP and store as a Gremlin(s).
I use %LPATH% (and %SPATH%), which stands for LISP Path (and SUPPORT Path).
"BLOCK Path" can be declared as well.

Now, inside the (CUI) Macro, if it is a Block:
^C^C-INSERT;(strcat %BPATH% "Detail01");...

As far as where to locate your library, I locate ours in the appdata\roaming
section. Why? If AutoCAD is uninstalled (or upgraded to a new release), my
customization is still there on the hard drive. Another possible location is
"C:\Program Files".

Reason being - For a complete uninstall of the AutoCAD product, the instructions
by Autodesk state to manually remove the "AutoCAD ####" folder that is found
in the appdata\roaming\Autodesk section. If your library is a sub-folder to this
folder, then your library will be lost (yup, happened here).

???

Scot-65
A gift of extraordinary Common Sense does not require an Acronym Suffix to be added to my given name.

0 Likes