Do you find that sometimes setting up a page setup for publish can be a pain or your just to lazy? Ya I wish I could make one in the Publish dialog box also. But do you find yourself opening a handful of drawings then plotting the first one to your desired configuration. Then simply plotting to previous plot to the rest of your drawings? Well I wrote this little code for you out there who would rather just use previous plot. This little code allows you to type in SPP, to plot your drawing to the previous plot, QSAVE the drawing and automatically close it down. Then run the code on the next open sheet in your set. Its a nice little time saver I typically use when plotting consultants drawings.
(DEFUN C:SPP (/)
(command "-plot" "" "" "previous plot" "" "" "" "")
(command "qsave")
(command "close")
(princ))
Comments