<?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: lisp to copy object inside block and write to separate drawing in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11127170#M46301</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;Very nice&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One small improvement since the rest of your code is commandless &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ronjonp_0-1650901350036.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1059063i629EAC9AF5715C74/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ronjonp_0-1650901350036.png" alt="ronjonp_0-1650901350036.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 25 Apr 2022 15:43:09 GMT</pubDate>
    <dc:creator>ronjonp</dc:creator>
    <dc:date>2022-04-25T15:43:09Z</dc:date>
    <item>
      <title>lisp to copy object inside block and write to separate drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11126630#M46294</link>
      <description>&lt;P&gt;greetings..&lt;/P&gt;&lt;P&gt;hye all, i need help to create new dwg files from multiple object in model space into separate drawing.&lt;/P&gt;&lt;P&gt;i received a native drawing from client with&amp;nbsp; a total of 7-800+ pages. i had already spent few weeks in modifying and compiling the drawing into separate pdf files. but then the client requested for a cad files for each dwg by end of this week. using wblock i started to do this manually but im not going to finish on time. i need help to automate this task if possible. what i had done is i placed each drawing inside a block with an attribute (which will be the new_cad_file name). the drawing/object are place inside block (but not a part of said block). i created a sample dwg for your kind attention.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 12:35:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11126630#M46294</guid>
      <dc:creator>aces_acap</dc:creator>
      <dc:date>2022-04-25T12:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: lisp to copy object inside block and write to separate drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11126719#M46295</link>
      <description>&lt;P&gt;Post input drawing and all desired output dwgs to clearly see what goes into the process and what's the desired outcome.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 13:19:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11126719#M46295</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2022-04-25T13:19:31Z</dc:date>
    </item>
    <item>
      <title>Re: lisp to copy object inside block and write to separate drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11126765#M46296</link>
      <description>&lt;P&gt;Just guessing but give this a try. Very little error checking.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;(defun c:foo (/ a ll n p s ur)
  ;; RJP » 2022-04-25
  (cond	((setq s (ssget '((0 . "INSERT") (2 . "BLOCK2DWG") (410 . "Model"))))
	 (setvar 'tilemode 1)
	 (setq p (strcat (getvar 'dwgprefix) "_ExportedBlocks\\"))
	 (vl-mkdir p)
	 (setvar 'cmdecho 0)
	 (foreach e (mapcar 'cadr (ssnamex s))
	   (vla-getboundingbox (vlax-ename-&amp;gt;vla-object e) 'll 'ur)
	   (mapcar 'set '(ll ur) (mapcar 'vlax-safearray-&amp;gt;list (list ll ur)))
	   (setq n (getpropertyvalue e "DWG.NO#"))
	   (command "_.Zoom" "_W" ll ur)
	   (cond ((and (setq a (ssget "_W" ll ur)) (&amp;gt; (sslength a) 1))
		  ;; (ssdel e a)
		  (command "_.-Wblock" (strcat p n ".dwg") "" '(0 0 0) a "")
		 )
	   )
	 )
	 (setvar 'cmdecho 1)
	 (alert p)
	)
  )
  (princ)
)&lt;/LI-CODE&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;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 14:57:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11126765#M46296</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-04-25T14:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: lisp to copy object inside block and write to separate drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11126788#M46297</link>
      <description>&lt;P&gt;from the source drawing (new block.dwg) per attachment above, there are 3 blocks with different object inside. the block has different tag/attribute which named file_001, file_002, file_003. i need each of these block inside a new dwg..&lt;/P&gt;&lt;P&gt;named:&lt;/P&gt;&lt;P&gt;file_001.dwg&lt;/P&gt;&lt;P&gt;file_002.dwg&lt;/P&gt;&lt;P&gt;file_003.dwg&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how i imagine it to work is like this&lt;/P&gt;&lt;P&gt;call command&amp;gt;select block/s (x-number of blocks with file name attribute)&amp;gt; then the program will run for (x-times) how many blocks there is to create according to prev. selection...&lt;/P&gt;&lt;P&gt;the output will be (for example):&lt;/P&gt;&lt;P&gt;file_1.dwg&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;file_x.dwg&lt;/P&gt;&lt;P&gt;see attachment&lt;/P&gt;&lt;P&gt;input file- new block.dwg&lt;/P&gt;&lt;P&gt;output file- file_001.dwg; file_002.dwg;&lt;/P&gt;&lt;P&gt;i had reach max attachment, but there should be last file name file_003.dwg as per input dwg..&lt;/P&gt;&lt;P&gt;so if i have 700 blocks with 700 file_name_attribute, i can select all/how many i wish to create different dwg file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;am i clear?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 13:43:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11126788#M46297</guid>
      <dc:creator>aces_acap</dc:creator>
      <dc:date>2022-04-25T13:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: lisp to copy object inside block and write to separate drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11126874#M46298</link>
      <description>&lt;P&gt;your lisp kind of working (with slight issues)&lt;/P&gt;&lt;P&gt;1) after export, it delete the content of master file (see attach pic untittled.png)&lt;/P&gt;&lt;P&gt;2) the last file_003 is missing the bounding box&amp;nbsp;(see attach pic untittled2.png)&lt;/P&gt;&lt;P&gt;3) it missing the file_name at bottom right corner as per original&amp;nbsp;(see attach pic untittled3.png)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;also, i wish to select which block/how many i want to export using selection.&lt;/P&gt;&lt;P&gt;if i have 700-800 block, i might want to segregate the work into few batch in fear of program/pc crashing (performance issues).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;however this much has greatly ease my work. thanks&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 14:08:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11126874#M46298</guid>
      <dc:creator>aces_acap</dc:creator>
      <dc:date>2022-04-25T14:08:16Z</dc:date>
    </item>
    <item>
      <title>Re: lisp to copy object inside block and write to separate drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11127032#M46299</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12348849"&gt;@aces_acap&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try the code above again. You can select items and it will keep the titleblock in the selection.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 14:57:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11127032#M46299</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-04-25T14:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: lisp to copy object inside block and write to separate drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11127130#M46300</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12348849"&gt;@aces_acap&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;file_001.dwg&lt;/P&gt;
&lt;P&gt;file_002.dwg&lt;/P&gt;
&lt;P&gt;file_003.dwg&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Similar to&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593837"&gt;@ronjonp&lt;/a&gt;'s contribution , the difference is the lower left corner point will be at 0.0 0.0&amp;nbsp; on the exported files&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun c:GetOut  ( / aDoc ss i ll ur ll data e objs TagFile WBMT)
(setq aDoc (vla-get-ActiveDocument (vlax-get-acad-object)))   
(if
  (and
  	(= 1 (getvar 'Dwgtitled))
	(setq path (getvar 'dwgprefix))
  	(setq ss (ssget '((0 . "INSERT") (2 . "BLOCK2DWG"))))
  	)
  (progn
	(repeat (setq i (sslength ss))
	  (vla-getboundingbox
	    (setq e (vlax-ename-&amp;gt;vla-object (ssname ss (setq i (1- i))))) 'll 'ur
	    )
	   (setq data (mapcar 'vlax-safearray-&amp;gt;list (list ll ur)))
	   (command "_.Zoom" "_W" "_non" (Car  data) "_non" (cadr data))
	   (if (and
	     	(setq TagFile (vl-some '(lambda (at)
				     (if (eq (vla-get-tagstring at) "DWG.NO#")
				       		(strcat path (vla-get-textstring at) ".dwg")))
				  		(vlax-invoke e 'GetAttributes)))
		(setq objs (ssget "_W" (Car data)(Cadr data)))
		)
	     	(progn
		  (setq WBMT (vla-get-activeselectionset aDoc))
		  (vlax-for capture WBMT
		    (vla-copy capture)
		    	(Vlax-invoke capture 'Move (car data) '(0.0 0.0 0.0)))
	          (vla-WBlock aDoc TagFile  WBMT)		    
		  (vlax-for txt WBMT(vla-delete txt))
	          (vla-delete WBMT)
		     )
		  )
	      )
	  )
  )
  (princ)
  )&lt;/LI-CODE&gt;
&lt;P&gt;HTH&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 15:29:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11127130#M46300</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2022-04-25T15:29:15Z</dc:date>
    </item>
    <item>
      <title>Re: lisp to copy object inside block and write to separate drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11127170#M46301</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;Very nice&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One small improvement since the rest of your code is commandless &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ronjonp_0-1650901350036.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1059063i629EAC9AF5715C74/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ronjonp_0-1650901350036.png" alt="ronjonp_0-1650901350036.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Apr 2022 15:43:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11127170#M46301</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-04-25T15:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: lisp to copy object inside block and write to separate drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11128143#M46302</link>
      <description>&lt;P&gt;this is just great..&lt;/P&gt;&lt;P&gt;will this work on any other drawing? do i need to replace anything to make it work with other drawing/ different attribute. let say inside my drawing, i have 2 different attribute_tag which will be use..&lt;/P&gt;&lt;P&gt;eg. the attribute for 1 st part is name_tag (file#_xxx) &amp;amp; for 2nd part is sheet_tag (sheet#_xxx)&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2022 01:15:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11128143#M46302</guid>
      <dc:creator>aces_acap</dc:creator>
      <dc:date>2022-04-26T01:15:36Z</dc:date>
    </item>
    <item>
      <title>Re: lisp to copy object inside block and write to separate drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11128226#M46303</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12348849"&gt;@aces_acap&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;... will this work on any other drawing? do i need to replace anything to make it work with other drawing/ different attribute. let say inside my drawing, i have 2 different attribute_tag which will be use..&lt;/P&gt;
&lt;P&gt;eg.&lt;FONT color="#3366FF"&gt; the attribute for 1 st part is name_tag (file#_xxx) &amp;amp; for 2nd part is sheet_tag (sheet#_xxx)&lt;/FONT&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Yes it is possible, like before, post a sample drawing, &lt;FONT color="#0000FF"&gt;and show the intended results please&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2022 02:33:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11128226#M46303</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2022-04-26T02:33:22Z</dc:date>
    </item>
    <item>
      <title>Re: lisp to copy object inside block and write to separate drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11128237#M46304</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593837"&gt;@ronjonp&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;Very nice&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One small improvement since the rest of your code is commandless &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ronjonp_0-1650901350036.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1059063i629EAC9AF5715C74/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ronjonp_0-1650901350036.png" alt="ronjonp_0-1650901350036.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Thank you for that&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593837"&gt;@ronjonp&lt;/a&gt;.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Good catch&amp;nbsp;&lt;/FONT&gt;&lt;span class="lia-unicode-emoji" title=":thumbs_up:"&gt;👍&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2022 02:31:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11128237#M46304</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2022-04-26T02:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: lisp to copy object inside block and write to separate drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11128352#M46305</link>
      <description>&lt;P&gt;this should do for my current work. maybe later i will explore more possibilities with them, might need your help then..&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593837"&gt;@ronjonp&lt;/a&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365"&gt;@ВeekeeCZ&lt;/a&gt;&amp;nbsp;kudos&lt;/P&gt;</description>
      <pubDate>Tue, 26 Apr 2022 03:50:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11128352#M46305</guid>
      <dc:creator>aces_acap</dc:creator>
      <dc:date>2022-04-26T03:50:27Z</dc:date>
    </item>
    <item>
      <title>Re: lisp to copy object inside block and write to separate drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11255371#M46306</link>
      <description>&lt;P&gt;hello&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;,&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593837"&gt;@ronjonp&lt;/a&gt;&amp;nbsp;, i need a bit of extra help here,&lt;/P&gt;&lt;P&gt;after we succesfully takeout all model object from model space, our client get back to us with new comments.&lt;/P&gt;&lt;P&gt;when our lisp created the new dwg. they open it at empty space which require them to do zoom extent (because the dwg. file initially zoom to base). since we have around 600 dwg. files this become frustrating to them. can u help to modify the lisp a bit so that. the newly created dwg automatically zoom to object(dwg) when open. and also they want a layout view for each new dwg (based on current layout page setup) .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2022 01:26:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11255371#M46306</guid>
      <dc:creator>aces_acap</dc:creator>
      <dc:date>2022-06-24T01:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: lisp to copy object inside block and write to separate drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11255413#M46307</link>
      <description>&lt;P&gt;After your files are created create a script to zoom extents for all drawings, process them then send to the client. AFAIK there is no 'fast' way to do this like ODBX.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2022 02:10:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11255413#M46307</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2022-06-24T02:10:14Z</dc:date>
    </item>
    <item>
      <title>Re: lisp to copy object inside block and write to separate drawing</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11255517#M46308</link>
      <description>&lt;P&gt;is it...&lt;/P&gt;&lt;P&gt;ok., i just though the position can be modified in the previous lisp&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jun 2022 04:08:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-to-copy-object-inside-block-and-write-to-separate-drawing/m-p/11255517#M46308</guid>
      <dc:creator>aces_acap</dc:creator>
      <dc:date>2022-06-24T04:08:29Z</dc:date>
    </item>
  </channel>
</rss>

