Batch-processing AutoCAD drawings from LISP without SDI (take 2) - Through the Interface
(defun C:BATCH(/ dwgs lsp-name data-name) (setq dwgs '("C:/A.DWG" "C:/B.DWG" "C:/C.DWG" "C:/D.DWG") lsp-name "c:/tmp.lsp" data-name "c:/dwgs.tmp" ) (create-drawing-list data-name dwgs) (process-next-drawing data-name lsp-name "(create-circle)" ......