Hello, I was wondering if anyone would know of a lisp line to change the plotter type/name located under Printer/Plotter within the Layout sheet, not the every layout sheet, only the one I would be in at the time.
I need it to allow me to add a line to my plotting lisps,
LISP 1: (WORKS)
(defun C:PDNORMAL ()
(command "-PLOT" "NO" "" "" "DWG To PDF.pc3" "" "N" "Y")
(princ) ;clean exit
)
LISP 2: (DOES NOT WORK)
(defun C:PDNORMAL ()
(command "-PLOT" "NO" "" "" "DWG To PDF Flatten.pc3" "" "N" "Y")
(princ) ;clean exit
)
Any help would be apprecients,
Kind Regards,