<?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: Pipework script in AutoCAD in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/pipework-script-in-autocad/m-p/8103856#M174819</link>
    <description>&lt;P&gt;Yes that's the kind of thing I'm looking for! I have in excel worked out the coordinates so "if part a" is placed at location "x", part be location= (y)"&lt;BR /&gt;&lt;BR /&gt;I'll have a look at lsp and see if there is a way to incorporate that.&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Mon, 02 Jul 2018 07:59:42 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-07-02T07:59:42Z</dc:date>
    <item>
      <title>Pipework script in AutoCAD</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/pipework-script-in-autocad/m-p/8101016#M174815</link>
      <description>&lt;P&gt;Hello all,&lt;BR /&gt;&lt;BR /&gt;I'm trying to create a script that will chain combinations blocks into cad. I have the blocks drawn and saved as their own dwg files.&lt;BR /&gt;&lt;BR /&gt;Is there an easy to to add block (x) and then block (y) or whichever (there are a few) and have them connect?&lt;BR /&gt;&lt;BR /&gt;If so where would I begin with such a task?&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Many thanks&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;@Anonymous&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #808000;"&gt;john.vellek&lt;/SPAN&gt;&amp;nbsp;has edited your subject line for clarity:&amp;nbsp;Pipework script&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2018 15:49:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/pipework-script-in-autocad/m-p/8101016#M174815</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-29T15:49:31Z</dc:date>
    </item>
    <item>
      <title>Re: Pipework script in AutoCAD</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/pipework-script-in-autocad/m-p/8101070#M174816</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can start with -INSERT, &amp;lt;blockname&amp;gt;,&amp;lt;basepoint&amp;gt;, &amp;lt;xscale&amp;gt;,&amp;lt;yscale&amp;gt;, Rotation&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #808000;"&gt;Please select the &lt;STRONG&gt;Accept as Solution&lt;/STRONG&gt; button if my post solves your issue or answers your question.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2018 15:49:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/pipework-script-in-autocad/m-p/8101070#M174816</guid>
      <dc:creator>john.vellek</dc:creator>
      <dc:date>2018-06-29T15:49:47Z</dc:date>
    </item>
    <item>
      <title>Re: Pipework script in AutoCAD</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/pipework-script-in-autocad/m-p/8101130#M174817</link>
      <description>&lt;P&gt;You are able to place them as described above, and move them as needed with their 3D snap points.&amp;nbsp;As for having them "connect" though, I'm not aware of a way to do that without a parametric software.&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2018 16:13:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/pipework-script-in-autocad/m-p/8101130#M174817</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-29T16:13:53Z</dc:date>
    </item>
    <item>
      <title>Re: Pipework script in AutoCAD</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/pipework-script-in-autocad/m-p/8101174#M174818</link>
      <description>&lt;P&gt;You can try a .lsp.&lt;BR /&gt;As your blocks are saved in specific places, you can enter this way. the &lt;FONT color="#FF00FF"&gt;pink&lt;/FONT&gt; text means the location of the block.&lt;BR /&gt;Note: Scale is set to 1 and rotation is 0.&lt;/P&gt;&lt;PRE&gt;(defun c:Test nil
  (Command "_.Insert" &lt;FONT color="#FF00FF"&gt;"T:\\New\\X.Dwg"&lt;/FONT&gt; "_Scale" 1 pause 0)
  (Command "_.Insert" &lt;FONT color="#FF00FF"&gt;"T:\\New\\Y.Dwg"&lt;/FONT&gt; "_Scale" 1 pause 0)
  (princ)
  )
(prompt "\n&amp;gt;&amp;gt; Test &amp;lt;&amp;lt;")&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jun 2018 16:30:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/pipework-script-in-autocad/m-p/8101174#M174818</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-29T16:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Pipework script in AutoCAD</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/pipework-script-in-autocad/m-p/8103856#M174819</link>
      <description>&lt;P&gt;Yes that's the kind of thing I'm looking for! I have in excel worked out the coordinates so "if part a" is placed at location "x", part be location= (y)"&lt;BR /&gt;&lt;BR /&gt;I'll have a look at lsp and see if there is a way to incorporate that.&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 02 Jul 2018 07:59:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/pipework-script-in-autocad/m-p/8103856#M174819</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-02T07:59:42Z</dc:date>
    </item>
  </channel>
</rss>

