<?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: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13221515#M4951</link>
    <description>&lt;DIV&gt;(defun LM:getdynprops (blk)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; (mapcar '(lambda (x)&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (cons (vla-get-propertyname x) (vlax-get x 'value)))&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (vlax-invoke blk 'getdynamicblockproperties)))&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;(defun c:GetAllDynamicProperties ()&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; (setq blk "DynB-CalBarNo_1_50_ET")&lt;/DIV&gt;&lt;DIV&gt;(setq ss (ssget (list '(0 . "INSERT") (cons 2 (strcat blk ",`*U*")) '(66 . 1))))&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; (if ss&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; (progn&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (setq blk (vlax-ename-&amp;gt;vla-object (ssname ss 0)))&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (setq properties (LM:getdynprops blk))&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (foreach prop properties&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(princ (strcat "\nProperty: " (car prop) ", Value: " (cdr prop))) ;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ;(princ (strcat "\nProperty: " (car prop) ", Value: " (rtos (cdr prop) 2 2)))&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; )&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; (princ "\nNo dynamic block selected.")&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; )&lt;/DIV&gt;&lt;DIV&gt;)&lt;/DIV&gt;&lt;DIV&gt;I try to get the prop value of the block, anyone can tell me why go error?&lt;/DIV&gt;</description>
    <pubDate>Fri, 20 Dec 2024 01:15:45 GMT</pubDate>
    <dc:creator>skchui6159</dc:creator>
    <dc:date>2024-12-20T01:15:45Z</dc:date>
    <item>
      <title>Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13217195#M4947</link>
      <description>&lt;P&gt;Is possible on lisp to sum up the value and self update the MText of the no. of rebar of the dynamic block in above a line with selection? If there are no MText, no need to update.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 01:32:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13217195#M4947</guid>
      <dc:creator>skchui6159</dc:creator>
      <dc:date>2024-12-18T01:32:43Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13217367#M4948</link>
      <description>&lt;P&gt;You can get the current value from a dynamic block as I can see shrink or stretch changes the values. You can use Lee-mac Dynamic Block functions,&amp;nbsp;&lt;A href="https://www.lee-mac.com/dynamicblockfunctions.html" target="_blank"&gt;Dynamic Block Functions | Lee Mac Programming&lt;/A&gt;. So then add them up.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For a block showing (12)&amp;nbsp;&lt;/P&gt;&lt;P&gt;(LM:GETDYNPROPS obj)&lt;BR /&gt;(("Distance1" . 3075.xxx-xxxxxxxx) ("Origin" 0.0 0.0 0.0) ("Spacing &amp;amp; no. of links" . "( ) 150") ("Bar Size" . 10.0) ("Origin" 1732.xxx-xxxxxxxx 511.194790271098 1.02868241965889e-05) ("Distance3" . 2108.xxx-xxxxxxxx) ("Text Location" . 6.15727179154933) ("Origin" -1.17073068395257e-06 100.000000122702 0.0) ("Text Angle" . 3.14159258347001) ("Origin" 960.222686269668 242.xxx-xxxxxxxx 1.02868241965889e-05))&lt;BR /&gt;: (/ 3075 150)&lt;BR /&gt;20&lt;BR /&gt;: (/ 2108 150)&lt;BR /&gt;14 is correct answer 14-2 ie edge gap.&lt;/P&gt;&lt;P&gt;So still confused getting the field string showed get a length of an object, so how is this relevant to any of the other objects making the block. Or the dynamic properties.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;"\\pxqr;{\\T0.95;(%&amp;lt;\\AcObjProp.16.2 Object(%&amp;lt;\\_ObjId 1986975136 0&amp;gt;%).Length \\f \"%lu2%pr0%ct8[0.006667]\"&amp;gt;%)}"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 04:38:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13217367#M4948</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2024-12-18T04:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13217501#M4949</link>
      <description>&lt;P&gt;Sorry, I am not the creator of block. Only get attribute value of block and Mtext/ text, then update the Mtext eg. "16"ET16-200... update 16 is OK.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Dec 2024 06:06:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13217501#M4949</guid>
      <dc:creator>skchui6159</dc:creator>
      <dc:date>2024-12-18T06:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13219444#M4950</link>
      <description>&lt;P&gt;Can you provide some reference example/ location for me to write the lisp? Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Dec 2024 00:54:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13219444#M4950</guid>
      <dc:creator>skchui6159</dc:creator>
      <dc:date>2024-12-19T00:54:50Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13221515#M4951</link>
      <description>&lt;DIV&gt;(defun LM:getdynprops (blk)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; (mapcar '(lambda (x)&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (cons (vla-get-propertyname x) (vlax-get x 'value)))&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (vlax-invoke blk 'getdynamicblockproperties)))&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;(defun c:GetAllDynamicProperties ()&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; (setq blk "DynB-CalBarNo_1_50_ET")&lt;/DIV&gt;&lt;DIV&gt;(setq ss (ssget (list '(0 . "INSERT") (cons 2 (strcat blk ",`*U*")) '(66 . 1))))&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; (if ss&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; (progn&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (setq blk (vlax-ename-&amp;gt;vla-object (ssname ss 0)))&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (setq properties (LM:getdynprops blk))&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (foreach prop properties&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(princ (strcat "\nProperty: " (car prop) ", Value: " (cdr prop))) ;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ;(princ (strcat "\nProperty: " (car prop) ", Value: " (rtos (cdr prop) 2 2)))&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; )&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; (princ "\nNo dynamic block selected.")&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; )&lt;/DIV&gt;&lt;DIV&gt;)&lt;/DIV&gt;&lt;DIV&gt;I try to get the prop value of the block, anyone can tell me why go error?&lt;/DIV&gt;</description>
      <pubDate>Fri, 20 Dec 2024 01:15:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13221515#M4951</guid>
      <dc:creator>skchui6159</dc:creator>
      <dc:date>2024-12-20T01:15:45Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13222069#M4952</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14541765"&gt;@skchui6159&lt;/a&gt;&amp;nbsp; hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The error arises cause the data returns from&amp;nbsp;&lt;SPAN&gt;(setq properties (LM:getdynprops blk)) is mixed.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;e.g string, reals, list (points) and the (strcat) function accept only strings.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;would you provide an example of what you want to do here?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;post a sample dwg with before and after state.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Moshe&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Dec 2024 09:27:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13222069#M4952</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2024-12-20T09:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13222468#M4953</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="skchui6159_1-1734704201772.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1448148iBD1A1109845AF5F5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="skchui6159_1-1734704201772.png" alt="skchui6159_1-1734704201772.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="skchui6159_2-1734704367954.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1448149i259C288381598A5B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="skchui6159_2-1734704367954.png" alt="skchui6159_2-1734704367954.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/52747"&gt;@Moshe-A&lt;/a&gt;&amp;nbsp;Hi, Greeting. I want to add all number of in the blanket (&lt;SPAN&gt;integer)&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;in the block/Mtext/text and then update the no. of rebars of the orginal text (left hand side before the text of "ET" and "T") after select the object.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;I use the above lisp try to extracted the prop value. (It is my proposed step 1...)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Dec 2024 14:28:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13222468#M4953</guid>
      <dc:creator>skchui6159</dc:creator>
      <dc:date>2024-12-20T14:28:50Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13223148#M4954</link>
      <description>&lt;P&gt;Skhui696 is trying to add all the displayed numbers some are fields some are plain mtext. If its just make a new mtext then its sum the values, if its can change the values so final text is updated then a field sum made up of all objects is required. The issue I was having is that the individual dynamic block has a field that uses ".length" but the objects dont appear to have any dynamic parameters matching that length. So I could not even get the resulting field value eg 12. Its buried deep inside the dynamic block. So any ideas on how to get that value then summing them is the easy part.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;ps I did manage to get the field string but I used nentsel to get at it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Dec 2024 23:21:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13223148#M4954</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2024-12-20T23:21:36Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13224027#M4955</link>
      <description>&lt;P&gt;I have an idea. Can use somewhere to copy and paste then explode. Also make them in a group, get the value? Final, erase the new items? But how the lisp can get the prop value of the block.&lt;/P&gt;</description>
      <pubDate>Sat, 21 Dec 2024 12:54:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13224027#M4955</guid>
      <dc:creator>skchui6159</dc:creator>
      <dc:date>2024-12-21T12:54:58Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13224284#M4956</link>
      <description>&lt;P&gt;Here's my 5 cents. Yes, Copy, Explode, get sum, update original, remove copy..it's all here.&lt;/P&gt;&lt;P&gt;Try this one. Tested on your sample drawing.&lt;/P&gt;&lt;P&gt;Load or drag/drop into your drawing. Function call is COUNT. Pick a window around your layout,&lt;/P&gt;&lt;P&gt;then, pick the MTEXT at the far end.&lt;/P&gt;&lt;P&gt;Note: you cannot have items to the right of the rebar layout ~ 16000 units, that's where the&lt;/P&gt;&lt;P&gt;program makes a copy. It also makes a Layer called "TEMP". You may want to remove that.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have fun with it.&lt;/P&gt;&lt;P&gt;ECCAD&lt;/P&gt;</description>
      <pubDate>Sat, 21 Dec 2024 18:02:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13224284#M4956</guid>
      <dc:creator>ec-cad</dc:creator>
      <dc:date>2024-12-21T18:02:50Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13224292#M4957</link>
      <description>&lt;P&gt;Guys,&lt;/P&gt;&lt;P&gt;I tried a few hours to dig into the Dynamic block to grab the MTEXT. No go on my part.&lt;/P&gt;&lt;P&gt;I tried all the (assoc 330 / (assoc 360's - kept going back to the Block. Shows something in&lt;/P&gt;&lt;P&gt;XDICTIONARY ? Whatever that is. Gave up, made a Lisp to grab the rebar layout, copy / explode, remove&lt;/P&gt;&lt;P&gt;so it would surface those burried MTEXTS. Why are they burried so deep that I can't seem to get at them&lt;/P&gt;&lt;P&gt;is a mistery. Maybe someone here can explain how to get to them...&lt;/P&gt;&lt;P&gt;ECCAD&lt;/P&gt;</description>
      <pubDate>Sat, 21 Dec 2024 18:00:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13224292#M4957</guid>
      <dc:creator>ec-cad</dc:creator>
      <dc:date>2024-12-21T18:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225041#M4958</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15306255"&gt;@ec-cad&lt;/a&gt;&amp;nbsp;Thank you very much of your lisp!&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;Sorry, a more question. Sometime, I select a bit more of the object, the line below the text will also erased. Could it can be solve?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The lisp is Good! Thanks.&lt;/P&gt;</description>
      <pubDate>Sun, 22 Dec 2024 08:22:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225041#M4958</guid>
      <dc:creator>skchui6159</dc:creator>
      <dc:date>2024-12-22T08:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225077#M4959</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/15306255"&gt;@ec-cad&lt;/a&gt;&amp;nbsp;A further question, sometime the block should be horizontal as the rebar have 2 way direction like that, it can also include that case?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="skchui6159_1-1734856750485.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1448408i0958CDED5A3CDF92/image-size/medium?v=v2&amp;amp;px=400" role="button" title="skchui6159_1-1734856750485.png" alt="skchui6159_1-1734856750485.png" /&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>Sun, 22 Dec 2024 08:40:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225077#M4959</guid>
      <dc:creator>skchui6159</dc:creator>
      <dc:date>2024-12-22T08:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225185#M4960</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14541765"&gt;@skchui6159&lt;/a&gt;&amp;nbsp; hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yesterday i have spent the whole day (from 9:00 to 24:00) trying to figure this out and i think&lt;/P&gt;&lt;P&gt;i crack it&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&amp;nbsp; (no very easy i admit) but it is still not finished (it will tonight) but i have two question for you:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Why do you use mtext and not keep using the dynamic block? it will be much easier if it will be not mixed.&lt;/P&gt;&lt;P&gt;2. the dynamic block is very&amp;nbsp;&lt;SPAN&gt;sophisticated one (btw: its it yours?) contain about 20 visibility states, on your sample you use "() 150".&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; if you use others, it would help if you post sample.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Moshe&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Dec 2024 09:55:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225185#M4960</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2024-12-22T09:55:30Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225241#M4961</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/52747"&gt;@Moshe-A&lt;/a&gt;&amp;nbsp;This block not mine... But I need use it for working (Question 2)...Thank you for your help! Be relax.&lt;/P&gt;&lt;P&gt;For the question 1, because I think the dynamic block can not support multiple object in different distance to show the result. In the single result, the visibilty show the result directly (in custom spacing set it to eg. 225 c/c it shows 2T20-225...) .&amp;nbsp; I think using lisp to select dynamic block to find the result is very complex (may be no solution....&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&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>Sun, 22 Dec 2024 10:29:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225241#M4961</guid>
      <dc:creator>skchui6159</dc:creator>
      <dc:date>2024-12-22T10:29:03Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225254#M4962</link>
      <description>&lt;P&gt;Yes there will be a solution tonight or max tomorrow&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Dec 2024 10:38:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225254#M4962</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2024-12-22T10:38:16Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225265#M4963</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/52747"&gt;@Moshe-A&lt;/a&gt;&amp;nbsp;Thank you for help! For my level, I think that may be I can not get any value of the block....&lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Dec 2024 10:49:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225265#M4963</guid>
      <dc:creator>skchui6159</dc:creator>
      <dc:date>2024-12-22T10:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225268#M4964</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14541765"&gt;@skchui6159&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/52747"&gt;@Moshe-A&lt;/a&gt;&amp;nbsp;Thank you for help! For my level, I think that may be I can not get any value of the block....&lt;span class="lia-unicode-emoji" title=":face_with_tears_of_joy:"&gt;😂&lt;/span&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;to use the block you can be at user normal level (you should explore it a bit)&lt;/P&gt;&lt;P&gt;but if you do not plan to use the block, there is no point for my lisp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Dec 2024 10:57:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225268#M4964</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2024-12-22T10:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225389#M4965</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/52747"&gt;@Moshe-A&lt;/a&gt;&amp;nbsp;I use the this block for calulate the rebar number lots of time (user level). I know there are different visibilty mode in block. In multiple object, I can just use visibilty mode (eg.150) for my works. There are lot of visibilty mode... Single calculation of a rebar spacing, the dynamic blk can help. In the view of block properties, I can find the value of grid distance..., but I can not find the information of number of rebar...&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Dec 2024 12:59:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225389#M4965</guid>
      <dc:creator>skchui6159</dc:creator>
      <dc:date>2024-12-22T12:59:10Z</dc:date>
    </item>
    <item>
      <title>Re: Sum of dynamic block attributes and Text or MText with above a line and update the Value with Selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225427#M4966</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14541765"&gt;@skchui6159&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/52747"&gt;@Moshe-A&lt;/a&gt;&amp;nbsp;I use the this block for calulate the rebar number lots of time (user level). I know there are different visibilty mode in block. In multiple object, I can just use visibilty mode (eg.150) for my works. There are lot of visibilty mode... Single calculation of a rebar spacing, the dynamic blk can help. In the view of block properties, &lt;FONT color="#0000FF"&gt;I can find the value of grid distance..., but I can not find the information of number of rebar&lt;/FONT&gt;...&lt;span class="lia-unicode-emoji" title=":grinning_face_with_sweat:"&gt;😅&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ya, if we could talk to the&amp;nbsp;&lt;SPAN&gt;author of this block, it could save us a lot of time but since this is not possible you have to explore.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;you could modified it to meet your needs though. if "() 150" serve you, then their is a place for the lisp but as i said, consider avoiding&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;using mtext cause&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;the beauty of the block is the field in mtext that attached to a polyline which result the length according to stretching of the rebar.&lt;/SPAN&gt;&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Dec 2024 13:55:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/sum-of-dynamic-block-attributes-and-text-or-mtext-with-above-a/m-p/13225427#M4966</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2024-12-22T13:55:53Z</dc:date>
    </item>
  </channel>
</rss>

