@Sea-Haven
Cool, so you know the various ways to load lisps and so on.
I am still amazed at people using LT rather than bcad, as bcad has advantages over acad in some areas to boot.
Every company should have 1 network seat of bcad IMO, as plan B when drawings go corrupt or you are dealing with point clouds or dgn's.
I wanted to mention these days my typical menu entry or key-in assignments will load the lisp every time, like:
(DEFUN C:XIL () (PRINC "\nIsolate Xref Layers")(LOAD "IsolateXrefs.lsp")(c:IsolateXrefs)(princ))
Seems crazy, but its so fast there is essentially no delay.
I could do:
(DEFUN C:XIL () (PRINC "\nIsolate Xref Layers")(IF (NOT c:IsolateXrefs)(LOAD "IsolateXrefs.lsp"))(c:IsolateXrefs)(princ))
but reloading each time deals with some old junky lisps that have common function names with other lisps that I have not cleaned up. Really, I just like the shorter code statement.
I could use autoload but never startup suite.
Ver 1.4 must have been fun. I started on 10 for DOS in college. We had tablets and the pen with pushy end tip for picking. I loved it. I know now its all about unloading the mouse hand from commands, typing is way less stress on tendons, faster too. RIBBONCLOSE is still my favorite command, lol.
internal protected virtual unsafe Human() : mostlyHarmless
I'm just here for the Shelties