<?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: How do I import multiple DXF files into one drawing at the same time. in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-do-i-import-multiple-dxf-files-into-one-drawing-at-the-same/m-p/9341598#M77955</link>
    <description>&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class=""&gt;Use it&lt;/SPAN&gt;&lt;/SPAN&gt; : &lt;A href="https://www.kdmsoft.net/autoviewport.html" target="_blank" rel="noopener"&gt;AutoViewport &lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://youtu.be/rMXZ6hb7DTM" target="_blank" rel="noopener"&gt;https://youtu.be/rMXZ6hb7DTM&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Feb 2020 04:09:54 GMT</pubDate>
    <dc:creator>maratovich</dc:creator>
    <dc:date>2020-02-26T04:09:54Z</dc:date>
    <item>
      <title>How do I import multiple DXF files into one drawing at the same time.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-do-i-import-multiple-dxf-files-into-one-drawing-at-the-same/m-p/9341234#M77952</link>
      <description>&lt;P&gt;Good day, all.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I looked around and couldn't find exactly what I am looking for.. I do a lot of manual nesting for the company that I work for. We do not use any auto nesting software. I am looking for a way to open all my DXF files in one DWG at the same time, so I can nest them all. As is, I am currently opening each file individually and copying and then pasting it into my "master drawing" where I create a good nest for our cnc plasma table. Any suggestions would greatly be appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Seth&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2020 22:12:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-do-i-import-multiple-dxf-files-into-one-drawing-at-the-same/m-p/9341234#M77952</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-25T22:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import multiple DXF files into one drawing at the same time.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-do-i-import-multiple-dxf-files-into-one-drawing-at-the-same/m-p/9341242#M77953</link>
      <description>How would you want the program to guess at placement of many files dropping in all at once?&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 25 Feb 2020 22:17:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-do-i-import-multiple-dxf-files-into-one-drawing-at-the-same/m-p/9341242#M77953</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2020-02-25T22:17:13Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import multiple DXF files into one drawing at the same time.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-do-i-import-multiple-dxf-files-into-one-drawing-at-the-same/m-p/9341483#M77954</link>
      <description>&lt;P&gt;You can insert a dxf, I would use (getvar 'extmax) (getvar 'extmin) this will give the corners of the current dwg, get the right X the bottom Y as the insertion point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You will need a script of some form that reads the dxf file names then runs a lisp to actually insert.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;; save as insertdxf.lsp&lt;BR /&gt;(defun insdxf (fname / top bot pt)
(setq top (getvar 'extmax))
(setq bot (getvar 'extmin))
(setq pt (list (car top)(cadr bot))
(command "-insert" fname pt 1 1 0)
)&lt;/PRE&gt;&lt;P&gt;script&lt;/P&gt;&lt;PRE&gt;(load "insertdxf")&lt;BR /&gt;(insdxf "c:\\myfolder 1\\myjobs\\dwg1.dxf")
(insdxf "c:\\myfolder 1\\myjobs\\dwg2.dxf")
(insdxf "c:\\myfolder 1\\myjobs\\dwg3.dxf")&lt;/PRE&gt;&lt;P&gt;Use say Lee-mac srciptwriter to create the script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2020 01:46:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-do-i-import-multiple-dxf-files-into-one-drawing-at-the-same/m-p/9341483#M77954</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2020-02-26T01:46:09Z</dc:date>
    </item>
    <item>
      <title>Re: How do I import multiple DXF files into one drawing at the same time.</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-do-i-import-multiple-dxf-files-into-one-drawing-at-the-same/m-p/9341598#M77955</link>
      <description>&lt;P&gt;&lt;SPAN class="tlid-translation translation"&gt;&lt;SPAN class=""&gt;Use it&lt;/SPAN&gt;&lt;/SPAN&gt; : &lt;A href="https://www.kdmsoft.net/autoviewport.html" target="_blank" rel="noopener"&gt;AutoViewport &lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://youtu.be/rMXZ6hb7DTM" target="_blank" rel="noopener"&gt;https://youtu.be/rMXZ6hb7DTM&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Feb 2020 04:09:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/how-do-i-import-multiple-dxf-files-into-one-drawing-at-the-same/m-p/9341598#M77955</guid>
      <dc:creator>maratovich</dc:creator>
      <dc:date>2020-02-26T04:09:54Z</dc:date>
    </item>
  </channel>
</rss>

