Message 1 of 11
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
I have been using a lisp to automatically print to pdf with always the same pdf name (details.pdf). Only problem is that this doen't save it on the dwg folder map. Can someone help me with this?
(defun C:PPP (/)
(command "_.-PLOT" ;
"_yes" ;
"map02";
"Dwg To PDF.pc3" ;
"ISO full bleed A4 (210.00 x 297.00 MM)" ;
"_millimeters" ;
"_portrait"
"_no"
"_layout"
"1:1"
"0.00,0.00"
"_yes"
"mapcolor.ctb"
"_yes"
"_no"
"_no"
"_no"
"details"
"_no"
"_yes"
);_command
(princ) ;
)
Solved! Go to Solution.