Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
I have the following lisp
(defun c:LayTransAuto()
(cond ((not (member "laytrans.arx" (arx))) (arxload "laytrans")))
(acet-laytrans "newlayers.dws" 0)
(princ))
and the following script that calls the above lisp
(load "laytrans.lsp" nil)
(c:LayTransAuto)
_.qsave
_.close
When I load this lsp into appstart, I can call the function and it runs as expected. How ever when I run the script that calls the lisp via the Batch Save Utility I get the following error.
Command: (load "laytranslsp.lsp" nil)
C:LAYTRANSAUTO
Command: (c:LayTransAuto)
; error: ARXLOAD failed
Command: _.qsave
Command: _.close
Solved! Go to Solution.

