how to load a lisp automatically everytime
how to load a lisp automatically everytime
(OP)
i wanna know how to load a lisp so that whenever i open a drawing or a project it loads it automatically
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
how to load a lisp automatically everytime
|
RE: how to load a lisp automatically everytime
you can appload a lisp with different ways.
Here's one: Put the *.lsp into a supportfolder-> "_appload" -> Startgroup, contents...
Lothar
ADT 2004
ACAD 2002
RE: how to load a lisp automatically everytime
ADT 2004
ACAD 2002
RE: how to load a lisp automatically everytime
You can also add a startup command to the acad.lsp like this:
(DEFUN S::Startup ()
(load"dothis.lsp")
)
Place at the very beginning of the acad.lsp file.
In options, you have to specify that acad.lsp is loaded with each drawing.