Export PDF dialog box default path
Wondering if we have the ability to change the default export pdf dialog box filepath? Even if it just remembered the last file save path in the dialog box, that would be a bonus…
0
Comments
-
0
-
As mentoined above,
you can fix the path to known location.
I use a simple lisp (see below) that use the drawing location path when printing.
see if it helps:
(defun c:pxrnt ()
(SETVAR "PLOTOUTPUTPATH" (getvar "DWGPREFIX"))
(command "_print")
)0 -
We used a lisp that made a PDF directory under the dwg location and the lisp would auto plot the layouts to that location. happy to provide code if you think useful.
0