<?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: change existing block attribute lisp in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761586#M14270</link>
    <description>&lt;P&gt;Great job! Thanks a lot! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 08 May 2024 23:34:29 GMT</pubDate>
    <dc:creator>mruPRQUJ</dc:creator>
    <dc:date>2024-05-08T23:34:29Z</dc:date>
    <item>
      <title>change existing block attribute lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761003#M14263</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;The below lisp is used to modify selected block attribute.&lt;BR /&gt;(vl-string-subst "" "B" string),&lt;BR /&gt;(vl-string-subst "" "b" string),&lt;BR /&gt;(wcmatch attribute_string "#[AaBb]"),&lt;BR /&gt;(wcmatch attribute_string "##[AaBb]")&lt;BR /&gt;in the above setting, block attribute will be change from 1B to 1&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;(vl-string-subst "B" "A" string),&lt;BR /&gt;(vl-string-subst "b" "a" string),&lt;BR /&gt;(wcmatch attribute_string "#[AaBb]"),&lt;BR /&gt;(wcmatch attribute_string "##[AaBb]")&lt;BR /&gt;in the above setting, block attribute will be change from 1A to 1B&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(vl-string-subst "" "C" string),&lt;BR /&gt;(vl-string-subst "" "c" string),&lt;BR /&gt;(wcmatch attribute_string "#[AaCc]"),&lt;BR /&gt;(wcmatch attribute_string "##[AaCc]")&lt;BR /&gt;in the above setting, block attribute will be change from 1C to 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could you please modify the lisp to change block attribute from 1 to 1C?&lt;/P&gt;&lt;P&gt;Please see the lisp below, the original lisp was attached as well, thank you very much in advance. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;(vl-load-com)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;(defun c:ASet (/ format_date chgtxt adoc data_assoc_list ss attribute_tag attribute_string)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;;********************************************************************************************&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(defun format_date (/ mon date)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(setq mon '("JAN" "FEB" "MAR" "APR" "MAY" "JUN" "JUL" "AUG" "SEP" "OCT" "NOV" "DEC"))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(setq date (rtos (fix (getvar "cdate")) 2 0))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(strcat (substr date 1 4) (nth (1- (atoi (substr date 5 2))) mon) (substr date 7 2))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; ;********************************************************************************************&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(defun chgtxt (string)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(cond&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(= (car (reverse (vl-string-&amp;gt;list string))) 65)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(vl-string-subst "" "B" string)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(= (car (reverse (vl-string-&amp;gt;list string))) 97)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(vl-string-subst "" "b" string)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; ;********************************************************************************************&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(setq data_assoc_list '(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;("DATE" . "2024MAY")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;; ("DESIGNED_BY" . "P. SINGH")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;; ("INDEPENDENT_CHK" . "R. CLELLAND")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;; ("DRAFTED_BY" . "M. RU")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;; ("DRAFTING_CHECK" . "P. SINGH")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(if (ssget "_X" (list '(0 . "insert")))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(vlax-for block_reference (vla-get-activeSelectionSet (vla-get-activedocument (vlax-get-acad-object)))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(cond&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(wcmatch (strcase (vla-get-effectiveName block_reference)) "BCH-X-BORD-DXXX,BCH-X-BORD-BXXX,BCH-X-BORD-AXXX,BCH-X-BORD-REVI,BCH-X-BORD-REVI-TRIA,BCH-X-ANNO-STMP-OBSO,REVTRIANGLE")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(foreach attribute (vlax-invoke block_reference 'getAttributes)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(setq attribute_tag (strcase (vla-get-tagString attribute)))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(setq attribute_string (vla-get-textString attribute))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(cond&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(setq item (assoc attribute_tag data_assoc_list))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; (vla-put-textString attribute (format_date))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; (vla-put-textString attribute (cdr item))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(wcmatch attribute_tag "REV*_`#,R_NO,R_NO_D&amp;amp;E,R_NO_A&amp;amp;B,REV_NO,`#`#")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (cond&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;((wcmatch attribute_string "#[AaBb]")&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (setq attribute_string (substr attribute_string 1 1)) ; keep only #&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (vla-put-textString attribute attribute_string)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;((wcmatch attribute_string "##[AaBb]")&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (setq attribute_string (substr attribute_string 1 2))&amp;nbsp; ; keep only ##&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; (vla-put-textString attribute attribute_string)&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;)&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ) ; cond&lt;/DIV&gt;&lt;DIV&gt;)&lt;/DIV&gt;&lt;DIV&gt;)&lt;/DIV&gt;&lt;DIV&gt;)&lt;/DIV&gt;&lt;DIV&gt;)&lt;/DIV&gt;&lt;DIV&gt;(&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(or &amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(= "BCH-ST-DYN-DWG-ISSUE" (vla-get-effectivename block_reference))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(= "B-BCH-ST-DYN-DWG-ISSUE" (vla-get-effectivename block_reference))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp; )&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(setpropertyvalue (vlax-vla-object-&amp;gt;ename block_reference) "AcDbDynBlockPropertyVisibility" "IFC - ISSUE FOR CONSTRUCTION") &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;t&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;(vlax-release-object block_reference)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;(princ)&lt;/DIV&gt;&lt;DIV&gt;)&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2024 17:44:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761003#M14263</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2024-05-08T17:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: change existing block attribute lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761132#M14264</link>
      <description>&lt;P&gt;for&amp;nbsp;block attribute will be change from 1B to 1:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;((wcmatch attribute_string "1B")
 (setq attribute_string (substr attribute_string 1 1)) ; keep only 1st digit
 (vla-put-textString attribute attribute_string)
)&lt;/LI-CODE&gt;&lt;P&gt;for&amp;nbsp;block attribute will be change from 1A to 1B:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;((wcmatch attribute_string "1A")
 (setq attribute_string (strcat (substr attribute_string 1 1) "B")) ; keep only 1st digit &amp;amp; add B
 (vla-put-textString attribute attribute_string)
) &lt;/LI-CODE&gt;&lt;P&gt;for&amp;nbsp;block attribute will be change from 1C to 1:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;((wcmatch attribute_string "1C")
 (setq attribute_string (substr attribute_string 1 1)) ; keep only 1st digit
 (vla-put-textString attribute attribute_string)
)&lt;/LI-CODE&gt;&lt;P&gt;you can also combine 1B to 1 &amp;amp;&amp;nbsp;1C to 1:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;((wcmatch attribute_string "1[BC]")
 (setq attribute_string (substr attribute_string 1 1)) ; keep only 1st digit
 (vla-put-textString attribute attribute_string)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 08 May 2024 19:11:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761132#M14264</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-05-08T19:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: change existing block attribute lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761159#M14265</link>
      <description>&lt;P&gt;FYI: Since there are no wildcard matching requirements then instead of &lt;STRONG&gt;wcmatch&lt;/STRONG&gt; use &lt;STRONG&gt;eq&lt;/STRONG&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for block attribute will be change from 1B to 1:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;((eq attribute_string "1B")
 (setq attribute_string (substr attribute_string 1 1)) ; keep only 1st digit
 (vla-put-textString attribute attribute_string)
)&lt;/LI-CODE&gt;&lt;P&gt;for block attribute will be change from 1A to 1B:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;((eq attribute_string "1A")
 (setq attribute_string (strcat (substr attribute_string 1 1) "B")) ; keep only 1st digit &amp;amp; add B
 (vla-put-textString attribute attribute_string)
) &lt;/LI-CODE&gt;&lt;P&gt;for block attribute will be change from 1C to 1:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;((eq attribute_string "1C")
 (setq attribute_string (substr attribute_string 1 1)) ; keep only 1st digit
 (vla-put-textString attribute attribute_string)
)&lt;/LI-CODE&gt;&lt;P&gt;only when combining 1B &amp;amp; 1C then use wcmatch:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;((wcmatch attribute_string "1[BC]")
 (setq attribute_string (substr attribute_string 1 1)) ; keep only 1st digit
 (vla-put-textString attribute attribute_string)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 08 May 2024 19:30:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761159#M14265</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-05-08T19:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: change existing block attribute lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761435#M14266</link>
      <description>&lt;P&gt;Sorry I did not say it clearly.&lt;/P&gt;&lt;P&gt;1, 2, 3, or 5, 15 need to be changed to 1B, 2B, 3B, or 5B, 15B, thanks.&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2024 22:02:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761435#M14266</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2024-05-08T22:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: change existing block attribute lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761502#M14267</link>
      <description>&lt;P&gt;in that case then use this:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;((wcmatch attribute_string "#,##") ; single or double digit numbers
 (setq attribute_string (strcat attribute_string "B")) ; Add B
 (vla-put-textString attribute attribute_string)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 08 May 2024 22:33:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761502#M14267</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-05-08T22:33:19Z</dc:date>
    </item>
    <item>
      <title>Re: change existing block attribute lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761521#M14268</link>
      <description>&lt;P&gt;could you please advise me if this will be added to the existing lisp? Or it is a new lisp.&lt;/P&gt;&lt;P&gt;only below block attributes need to be modified, sorry about it, thanks.&lt;/P&gt;&lt;P&gt;"BCH-X-BORD-DXXX,BCH-X-BORD-BXXX,BCH-X-BORD-AXXX,BCH-X-BORD-REVI,BCH-X-BORD-REVI-TRIA,BCH-X-ANNO-STMP-OBSO,REVTRIANGLE")&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2024 22:54:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761521#M14268</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2024-05-08T22:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: change existing block attribute lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761538#M14269</link>
      <description>&lt;P&gt;that depends because your existing lisp has these lines:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;      (cond
       ((wcmatch attribute_string "#[AaBb]")
        (setq attribute_string (substr attribute_string 1 1)) ; keep only #
        (vla-put-textString attribute attribute_string)
       )
       ((wcmatch attribute_string "##[AaBb]")
        (setq attribute_string (substr attribute_string 1 2))  ; keep only ##
        (vla-put-textString attribute attribute_string)
       )       
      ) ; cond&lt;/LI-CODE&gt;&lt;P&gt;If you think your title block attribute values could match those 2 conditions which is a &lt;STRONG&gt;single&lt;/STRONG&gt; or &lt;STRONG&gt;double&lt;/STRONG&gt; digit &lt;STRONG&gt;number(s)&lt;/STRONG&gt; followed by either upper case &lt;STRONG&gt;A&lt;/STRONG&gt; or &lt;STRONG&gt;B&lt;/STRONG&gt; or lower case &lt;STRONG&gt;a&lt;/STRONG&gt; or &lt;STRONG&gt;b&lt;/STRONG&gt; but you don't want any changes to occur then save the current lisp with a different name and replace the above lines of code with the one I provided. Then when you run this new code only the changes you want to occur will take place.&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2024 22:57:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761538#M14269</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-05-08T22:57:58Z</dc:date>
    </item>
    <item>
      <title>Re: change existing block attribute lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761586#M14270</link>
      <description>&lt;P&gt;Great job! Thanks a lot! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2024 23:34:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761586#M14270</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2024-05-08T23:34:29Z</dc:date>
    </item>
    <item>
      <title>Re: change existing block attribute lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761592#M14271</link>
      <description>&lt;P&gt;glad to have helped again...cheers!!!&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2024 23:36:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761592#M14271</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2024-05-08T23:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: change existing block attribute lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761593#M14272</link>
      <description>&lt;P&gt;thanks again! cheers!!!&lt;/P&gt;</description>
      <pubDate>Wed, 08 May 2024 23:37:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/change-existing-block-attribute-lisp/m-p/12761593#M14272</guid>
      <dc:creator>mruPRQUJ</dc:creator>
      <dc:date>2024-05-08T23:37:23Z</dc:date>
    </item>
  </channel>
</rss>

