- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi Guys,
I am a VERY new AutoCAD learner - I am teaching myself at this site : https://www.mycadsite.com
and it is very good for me. I am NOT attending a school or University so this is NOT about you
doing my homework for me 🙂
Ok. Here is my problem. I wanted to create a lisp file that will display co-ordinates when I click on
a point on the screen. Done that.
I can load the lisp file at the command line and it works perfectly, so the next job is to load it
automagically when I fire up AutoCAD. To do this I have to create a file called acad.lsp which
I have done and looks like this:
(defun s::startup ()
(load "LP2.LSP")
(load "LP3.LSP")
)
the instructions on how to I found here:
(Actually one of you very nice Community persons pointed me to it - thanks)
This should work, but the page then says "place it in the AutoCAD search path."
Ok - so where IS that or how do I find that?
Presumably where I installed AutoCAD is in the search path, but do I put acad.lsp there or somewhere else?
Where do I put the lsp files I created?
If I put acad.lsp and my custom files in the main AutoCAD directory then it will get pretty cluttered after a while.
I am also not sure if I should use the mystartup version of the acad.lsp file or not. At this point I am doing
straight forward CAD - nothing fancy.
When might I NEED to change over to the mystartup version?
What other applications might use S::STARTUP?
Thanks in advance guys
Solved! Go to Solution.