@Anonymous wrote:
Please tell me how to have your lisp loaded all the time in my AC. Every time I quit the prog the lisp gets unloaded. What do I have to do? Thank you.
Open up a plain-text editor such as Notepad. In it, put this line:
(load "LayerIsolateThawFreeze")
OR this line:
(autoload "LayerIsolateThawFreeze" '("LIT" "LUT"))
Save that to a file called acaddoc.lsp, in any logical-looking folder [most likely one with "support" in the name] that is in the Support File Search Path list, in the Files tab, in the OPTIONS command dialog box.
Whatever is in a file of that name [you can add more lines with other routines you want loaded] gets done in every drawing you open, new or existing. If you use the first one [the (load) function], it will be loaded outright, and the commands in it just plain defined. If you use the second [the (autoload) function], it will have its command names "flagged" to be available, but the code itself won't get loaded unless and until you call for one of those commands. The latter approach can save some time in opening up drawings if you eventually have a lot of such things listed in the acaddoc.lsp file.
Kent Cooper, AIA