- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello All,
I'm new to AutoCAD, LISP, and this forum. I'm hoping someone out there can help me out.
I'm trying to write multiple DWG's to PDF using DWG to PDF.PC3. I would like it to autosave and not prompt me to save each PDF. I can have up to 150+ PDF's.
I have done a lot of searching on this forum and others and have come up with a start. Here is what I have so far that does not work. Any ideas on how to fix? Any help would be much appreciated.
(setvar "cmdecho" 1)
(Command "-plot")
(Command "yes")
(Command "")
(Command "DWG TO PDF.PC3")
(Command "ARCH D (36.00 x 24.00 Inches)")
(Command "Inches")
(Command "Landscape")
(Command "yes")
(Command "Extents")
(Command "1:1")
(Command ".113427,.113168")
(Command "yes")
(Command "OMS.ctb")
(Command "yes")
(Command "no")
(Command "no")
(Command "Yes")
(Command "No")
(Command "no")
(Command "yes")
(ade_errclear)
(setvar "cmdecho" 1)
(setvar "filedia" 1)
(princ)
)
Solved! Go to Solution.