Ok the problem with app load does not appear to be a problem except for with 2 files. Any idea why 2 files may not be working? is there a setting that can turn off app load from working on a per sheet basis?
Currently I have a lsp (see code below) loaded into the startup suit. I am under the impression for every drawing opened it should load what ever is in the startup suit into every drawing. However, every other drawing is working (I load 4 drawings at a time per the code it should run save and close, and has worked many times in the past). I need this lsp to load for every drawing I open. Any fixes or workarounds for this problem or a better way to accomplish this? Also under options - system - I have "LOAD acad.lsp with every drawing" checked.
Code:
(command "-layer" "S" "G-XREF" "")
(command "erase" "W" "-4',3'10" "1.625,-0.875" "")
(command "erase" "W" "3'6,-0.28125" "6'2,3'2.125" "")
(command "zoom" "E")
(command "snapmode" "0")
(command "qsave")
(command "close")
Bookmarks