<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Plot Using Lisp in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plot-using-lisp/m-p/11915341#M31007</link>
    <description>&lt;P&gt;Something like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(COMMAND "-PLOT"  "Y"  "" "DWG To PDF"
	       "Iso full bleed A3 (420.00 x 297.00 MM)" "m" "LANDSCAPE"  "N"   "W"  "-6,-6" "807,560" "1=2"  "C"
	       "y" "Acad.ctb" "Y"	"n" "n" "n" pdfName "N" "y"
    )&lt;/LI-CODE&gt;&lt;P&gt;This plots a range of layouts to a pdf directory under the dwg location. Just change the plot parameters to suit.&lt;/P&gt;&lt;P&gt;Save the multi getvals.lsp to a support path so can autoload.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 23 Apr 2023 00:22:55 GMT</pubDate>
    <dc:creator>Sea-Haven</dc:creator>
    <dc:date>2023-04-23T00:22:55Z</dc:date>
    <item>
      <title>Plot Using Lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plot-using-lisp/m-p/11914433#M31004</link>
      <description>&lt;P&gt;Hi guys i am busy creating a lisp that plots to a certain location using a certain name that gets extacted from the titleblock combined with other numbers. for this example im going to use a variable name only.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun c:test (/)
(setvar "filedia" 0)
(setq prnt "C\\PRINT\\00-0000-0000.pdf")

(command "-plot" "y" "A0" "DWG To PDF.pc3" "ISO full bleed A0 (841.00 x 1189.00 MM)" "M" "L" "N" "E" "1=1" "C" "Y" "DRA.ctb" "Y" "N" "N" "N" prnt)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;my question is how do you put the prnt variable in?&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Apr 2023 07:28:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plot-using-lisp/m-p/11914433#M31004</guid>
      <dc:creator>My_Civil_3D</dc:creator>
      <dc:date>2023-04-22T07:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: Plot Using Lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plot-using-lisp/m-p/11914865#M31005</link>
      <description>&lt;P&gt;One problem you have is you're missing the colon after the drive letter.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ronjonp_0-1682175341195.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1205583iBA29C2026FF4404F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ronjonp_0-1682175341195.png" alt="ronjonp_0-1682175341195.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 22 Apr 2023 14:55:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plot-using-lisp/m-p/11914865#M31005</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2023-04-22T14:55:42Z</dc:date>
    </item>
    <item>
      <title>Re: Plot Using Lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plot-using-lisp/m-p/11915006#M31006</link>
      <description>&lt;P&gt;Share your title block or provide title block name along with attribute tag where the name is stored for extraction&lt;/P&gt;</description>
      <pubDate>Sat, 22 Apr 2023 17:56:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plot-using-lisp/m-p/11915006#M31006</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-04-22T17:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Plot Using Lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plot-using-lisp/m-p/11915341#M31007</link>
      <description>&lt;P&gt;Something like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(COMMAND "-PLOT"  "Y"  "" "DWG To PDF"
	       "Iso full bleed A3 (420.00 x 297.00 MM)" "m" "LANDSCAPE"  "N"   "W"  "-6,-6" "807,560" "1=2"  "C"
	       "y" "Acad.ctb" "Y"	"n" "n" "n" pdfName "N" "y"
    )&lt;/LI-CODE&gt;&lt;P&gt;This plots a range of layouts to a pdf directory under the dwg location. Just change the plot parameters to suit.&lt;/P&gt;&lt;P&gt;Save the multi getvals.lsp to a support path so can autoload.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Apr 2023 00:22:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/plot-using-lisp/m-p/11915341#M31007</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2023-04-23T00:22:55Z</dc:date>
    </item>
  </channel>
</rss>

