Message 1 of 4

Not applicable
12-11-2018
10:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I have a lisp that allows me to print my layouts together but it puts them in the folder of the path of the drawing. I need the pdf's to be saved to another folder. This is what I have so far. I appreciate the help.
The path of the folder I need it to be saved to is = C:/PDF/
(defun c:PDF ()
(foreach lay (layoutlist)
(setvar 'CTab lay)
(COMMAND "-PLOT"
"Y"
""
"DWG To PDF.pc3"
"ANSI full bleed B (11.00 x 17.00 Inches)"
"Inches"
"LANDSCAPE"
"N"
"E"
"f"
"C"
"Y"
"KA-PLOT-2018.ctb"
"Y"
"N"
"N"
"N"
""
"N"
"y" )
)
)
Solved! Go to Solution.