<?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: Total length from block reference in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666231#M16029</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13423916"&gt;@komondormrex&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="komondormrex_0-1711454712849.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1341921iF7044861EC042ACB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="komondormrex_0-1711454712849.png" alt="komondormrex_0-1711454712849.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;I know, i know.. you're right&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 26 Mar 2024 12:06:50 GMT</pubDate>
    <dc:creator>pbejse</dc:creator>
    <dc:date>2024-03-26T12:06:50Z</dc:date>
    <item>
      <title>Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12655865#M16017</link>
      <description>&lt;P&gt;Hi there.&lt;BR /&gt;First, coding is a black magic to me&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;BR /&gt;I'm using Lee Mac's (whose LISPs made my work way better, for what I'm forever grateful!) Length &amp;amp; Area Field program to display the total lenght of polylines, but I was wondering if it's possible to also get the length of polylines from within a block reference.&lt;BR /&gt;We have a custom program that creates block references with double meander pattern and also spits out the total lenght. We keep track of length of all other polylines via LFM and manually add the total lengh of those in block references. It would make our lives way easier to just select block references and polylines drawn by hand, run the LISP and get total length in one.&lt;BR /&gt;We can't explode the block references, because they contain data required for production robot.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="psuderNDHYL_0-1711017812995.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1339949i4BEDF9A6C600D273/image-size/medium?v=v2&amp;amp;px=400" role="button" title="psuderNDHYL_0-1711017812995.png" alt="psuderNDHYL_0-1711017812995.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(In this example I need a total length of selected block and also those pink polylines)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't even know if it's doable or just a fool's errand to get the properties of objects within a block.&lt;BR /&gt;&lt;BR /&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2024 10:50:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12655865#M16017</guid>
      <dc:creator>p.suderNDHYL</dc:creator>
      <dc:date>2024-03-21T10:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12656415#M16018</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12252853"&gt;@p.suderNDHYL&lt;/a&gt;&amp;nbsp;Here's a quick example with not much error checking:&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;(defun c:foo (/ _getlength ex n s)
  (defun _getlength (o / ep)
    (if	(vl-catch-all-error-p (setq ep (vl-catch-all-apply 'vlax-curve-getendparam (list o))))
      0.0
      (vlax-curve-getdistatparam o ep)
    )
  )
  (cond	((setq s (ssget ":L" '((0 . "INSERT"))))
	 (setq n 0)
	 (foreach e (vl-remove-if 'listp (mapcar 'cadr (ssnamex s)))
	   (foreach o (setq ex (vlax-invoke (vlax-ename-&amp;gt;vla-object e) 'explode))
	     (setq n (+ (_getlength o) n))
	   )
	 )
	 (mapcar 'vla-delete ex)
	 (alert (vl-princ-to-string n))
	)
  )
  (princ)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 21 Mar 2024 14:33:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12656415#M16018</guid>
      <dc:creator>ronjonp</dc:creator>
      <dc:date>2024-03-21T14:33:03Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12657901#M16019</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12252853"&gt;@p.suderNDHYL&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;but I was wondering if it's possible to also get the length of polylines from within a block reference.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;There is a way to do that of course. Can we assume the block has unique names? or is a dynamic block? We can filter the target polyline with a specific object property ( layer, color . etc.. )&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Would you mind posting a drawing file with a simple block?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12252853"&gt;@p.suderNDHYL&lt;/a&gt;&amp;nbsp;wrote:
&lt;P&gt;We can't explode the block references, because they contain data required for production robot.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Exploding the block is not an issue if you go about it the right way as demonstrated by&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593837"&gt;@ronjonp&lt;/a&gt;&amp;nbsp; contribution.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Mar 2024 04:08:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12657901#M16019</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2024-03-22T04:08:54Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12665608#M16020</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;&lt;BR /&gt;Here's an example drawing with mentioned blocks.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 06:44:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12665608#M16020</guid>
      <dc:creator>p.suderNDHYL</dc:creator>
      <dc:date>2024-03-26T06:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12665768#M16021</link>
      <description>&lt;P&gt;&lt;FONT size="3"&gt;Just for curiosity's sake, can you tell us what the value for "O" represents in this line?&amp;nbsp; L=34.2m - &lt;STRONG&gt;O&lt;/STRONG&gt;=5.13m2&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 08:27:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12665768#M16021</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2024-03-26T08:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12665774#M16022</link>
      <description>&lt;P&gt;That's the effective area of the floor heating - if you'd make a 75mm offset of the shape of the block.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 08:32:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12665774#M16022</guid>
      <dc:creator>p.suderNDHYL</dc:creator>
      <dc:date>2024-03-26T08:32:55Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12665787#M16023</link>
      <description>&lt;P&gt;&lt;FONT size="3"&gt;Can i assume there would be at least 2 or more instances of the target block in one drawing?&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;from your example, 2 of "1-0-1b" block or is always unique? one per?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 08:41:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12665787#M16023</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2024-03-26T08:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12665826#M16024</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="psuderNDHYL_1-1711443518421.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1341802iE36253576E11C242/image-size/medium?v=v2&amp;amp;px=400" role="button" title="psuderNDHYL_1-1711443518421.png" alt="psuderNDHYL_1-1711443518421.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;All blocks are always unique. We have multiple houses in the same drawing. We use the same layers for 1st, 2nd, 3rd (and so on) groups in each building. This is why I need it to be done by selection instead of 'sum all of specific layer'.&lt;/P&gt;&lt;P&gt;When we design, we usually use gibberish (like "jadsfh"), because program doesn't allow multiples, after we're done we just purge deleted blocks and use the same program to rename them to "building-floor-group". a,b,c and so on are added if there's multiple blocks for the same floor heating group.&lt;BR /&gt;&lt;BR /&gt;I've attached drawing with example layout of 2 houses in one drawing.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 09:03:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12665826#M16024</guid>
      <dc:creator>p.suderNDHYL</dc:creator>
      <dc:date>2024-03-26T09:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666020#M16025</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12252853"&gt;@p.suderNDHYL&lt;/a&gt;&amp;nbsp;wrote:
&lt;P&gt;I've attached drawing with example layout of 2 houses in one drawing.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Here's a Q&amp;amp;D demo code [&amp;nbsp;This will only work for block entity under layer group "Groep_*"]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;(Defun c:Demo ( / aDoc ss i lst l plineLength bname)
(setq aDoc (vla-get-ActiveDocument (vlax-get-acad-object)))  
  (if (setq l 0 ss (ssget '((0 . "INSERT")(8 . "Groep_#*"))))
    (repeat (setq i (sslength ss))
      (setq ev (ssname ss (setq i (1- i))))
      (Setq bname  (getPropertyValue ev "BlockTableRecord/Name"))
      (cond
	((setq f (assoc bname lst))
	 	(setq lst (subst (list bname (+ (cadr f)(last f)) (last f))
				 f lst )))
	((vlax-for obj (vla-item (Vla-get-blocks adoc) bname)
		  (setq objType (vla-get-ObjectName obj))
		  (cond
		    ((eq objType "AcDbPolyline")	     
		       (setq l (+ l (Vlax-get obj 'Length)))
		     )
		    )
	   	l
	   )
	 (setq lst (cons (list bname l l ) lst) l 0)
	 )
	)
      )
   )
  (foreach itm lst
    (print (strcat (car itm) " : " (rtos (* 0.001 (cadr itm)) 2 4 )))
    )
  (print)
  (print (strcat "\Total Length : " (rtos (* 0.001 (apply '+  (mapcar 'cadr lst))) 2 4)))
  (princ)
  )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;"1-1-6 : 37.2153" 
"1-1-1b : 5.7631" 
"1-1-1a : 29.4398" 
"1-1-2b : 16.4754" 
"1-1-2a : 33.0604" 
"1-1-3 : 44.5659" 
"1-1-5 : 28.0111" 
"1-1-4 : 37.3029" 
"2-1-6b : 6.8274" 
"2-1-6a : 24.3973" 
"2-1-1 : 48.0153" 
"2-1-5b : 15.2754" 
"2-1-5a : 35.6029" 
"2-1-4 : 45.5303" 
"2-1-3 : 42.1029" 
"2-1-2 : 31.4754" 

"Total Length :481.0608" &lt;/LI-CODE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;We can of course modify this to include Polylines under layer group "Groep_*"&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;One thing i noticed on your sample drawing, some doesn't account for the "cap" , 2-1-4 as &lt;STRONG&gt;45.3 &lt;/STRONG&gt;to include the cap it would be&lt;STRONG&gt; 45.53&amp;nbsp;&lt;/STRONG&gt;and 2-1-5a as &lt;STRONG&gt;35.40&lt;/STRONG&gt; --&amp;gt; &lt;STRONG&gt;35.60&lt;/STRONG&gt; with cap? is that by design? We can exclude that if that is what you're aiming for.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 10:27:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666020#M16025</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2024-03-26T10:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666121#M16026</link>
      <description>&lt;P&gt;First of all, thanks for helping me with this, I really appreciate it.&lt;BR /&gt;The program allows me to select only the blocks, not the polylines. Is there something wrong on my end?&lt;BR /&gt;The "cap" not being included in lenght is a design flaw in our program. The difference is small, so we just accepted to ignore it. Calculating with cap is better.&lt;BR /&gt;&lt;BR /&gt;I will be a bit more specific:&lt;BR /&gt;I'd love to be able to select some polylines and blocks and place a text field that is a result of their length.&lt;BR /&gt;Maybe that's helpful, but in another program that works only for polylines, I'm using %lu2%pr0%ct8[0.001] format, so the result is in meters in my case.&lt;/P&gt;&lt;P&gt;It doesn't have to display the result by layer, because those can change during the design.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="psuderNDHYL_0-1711449799032.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1341891i4C43E8999D608870/image-size/medium?v=v2&amp;amp;px=400" role="button" title="psuderNDHYL_0-1711449799032.png" alt="psuderNDHYL_0-1711449799032.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This is how I track the group lengths during designing. I can't go over 100m, so whenever I change something I calculate the total lenght manually every time and adjust the text.&lt;BR /&gt;&lt;BR /&gt;Again, thanks for taking your time and helping me with this &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 11:12:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666121#M16026</guid>
      <dc:creator>p.suderNDHYL</dc:creator>
      <dc:date>2024-03-26T11:12:47Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666137#M16027</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12252853"&gt;@p.suderNDHYL&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;The program allows me to select only the blocks, not the polylines. Is there something wrong on my end?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Nothing wrong on your end, that is exactly what the program is intended to do, maybe because of the topic is&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12655865#M463649" target="_blank" rel="noopener"&gt;&lt;STRONG&gt;Total length from block reference&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/STRONG&gt;&lt;/A&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12252853"&gt;@p.suderNDHYL&lt;/a&gt;&amp;nbsp;wrote:
&lt;P&gt;I'd love to be able to select some polylines and blocks and place a text field that is a result of their length.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;We can do that. hang on... Does that include field values of Polylines inside blocks?&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 11:45:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666137#M16027</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2024-03-26T11:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666227#M16028</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="komondormrex_0-1711454712849.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1341921iF7044861EC042ACB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="komondormrex_0-1711454712849.png" alt="komondormrex_0-1711454712849.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 12:05:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666227#M16028</guid>
      <dc:creator>komondormrex</dc:creator>
      <dc:date>2024-03-26T12:05:29Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666231#M16029</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/13423916"&gt;@komondormrex&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="komondormrex_0-1711454712849.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1341921iF7044861EC042ACB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="komondormrex_0-1711454712849.png" alt="komondormrex_0-1711454712849.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;I know, i know.. you're right&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 12:06:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666231#M16029</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2024-03-26T12:06:50Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666244#M16030</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;FONT size="3"&gt;We can do that. hang on... Does that include field values of Polylines inside blocks?&lt;/FONT&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Um yes, I think this is what I meant&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 12:15:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666244#M16030</guid>
      <dc:creator>p.suderNDHYL</dc:creator>
      <dc:date>2024-03-26T12:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666323#M16031</link>
      <description>&lt;P class="lia-align-left"&gt;&lt;FONT size="3"&gt;Alright, i’ll post the code.&amp;nbsp;&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Walking…&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Refer to attached lsp file. [&amp;nbsp;LengthOfPolyAndBlocks.lsp ]&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 16:19:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666323#M16031</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2024-03-26T16:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666339#M16032</link>
      <description>&lt;P&gt;There is also this link which points to other links for floor heating :&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.cadtutor.net/forum/files/file/47-floor-heating/" target="_blank" rel="noopener"&gt;https://www.cadtutor.net/forum/files/file/47-floor-heating/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HTH.&lt;/P&gt;&lt;P&gt;M.R:&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 12:50:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666339#M16032</guid>
      <dc:creator>marko_ribar</dc:creator>
      <dc:date>2024-03-26T12:50:02Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666346#M16033</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/940934"&gt;@marko_ribar&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;There is also this link which points to other links for floor heating :&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.cadtutor.net/forum/files/file/47-floor-heating/" target="_blank" rel="noopener"&gt;https://www.cadtutor.net/forum/files/file/47-floor-heating/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HTH.&lt;/P&gt;&lt;P&gt;M.R:&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Ah yes, we are aware of this thread in our company &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;We use some of the stuff from there &lt;span class="lia-unicode-emoji" title=":grinning_face_with_smiling_eyes:"&gt;😄&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 26 Mar 2024 12:54:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12666346#M16033</guid>
      <dc:creator>p.suderNDHYL</dc:creator>
      <dc:date>2024-03-26T12:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12668176#M16034</link>
      <description>&lt;P&gt;&lt;FONT size="3"&gt;Have you had the chance to test attached lisp file at post #15 &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12252853"&gt;@p.suderNDHYL&lt;/a&gt;&amp;nbsp;?&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2024 04:56:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12668176#M16034</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2024-03-27T04:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12668333#M16035</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;FONT size="3"&gt;Have you had the chance to test attached lisp file at post #15 &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/12252853"&gt;@p.suderNDHYL&lt;/a&gt;&amp;nbsp;?&lt;/FONT&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;I just came to work and was excited to test it. It works as intended.&lt;BR /&gt;Now the sad part: it looks like that when we edid the blocks with our program, instead of changing them, it creates new entities with the same name. The field text doesn't see them anymore and returns ##### after regenerating... This is something I was afraid that could happen, but was hoping it wouldn't &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2024 06:19:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12668333#M16035</guid>
      <dc:creator>p.suderNDHYL</dc:creator>
      <dc:date>2024-03-27T06:19:32Z</dc:date>
    </item>
    <item>
      <title>Re: Total length from block reference</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12668347#M16036</link>
      <description>&lt;P&gt;We'll just end up selecting everything from a group that had changed block and placing a new field, which is still better than manually adding everything on a calculator. I'm not allowed to share the program itself for inspection&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks again for taking your time and helping me &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Mar 2024 06:26:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/total-length-from-block-reference/m-p/12668347#M16036</guid>
      <dc:creator>p.suderNDHYL</dc:creator>
      <dc:date>2024-03-27T06:26:51Z</dc:date>
    </item>
  </channel>
</rss>

