<?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: Held Editing Multiple Block Attributes using a simple lisp in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10938250#M49305</link>
    <description>&lt;P&gt;You can hold CTRL while double-clicking to quickly edit atts without dlg.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or try this routine. But not for callouts.&lt;/P&gt;
&lt;PRE&gt;(defun c:Att (/ e f)
  
  (or *att-s* (setq *att-s* ""))
  (while (setq e (car (nentsel "\nPick an Attribute: ")))
    (princ "\nUse \\P for paragraph, space for none.")
    (setq f (getstring T (strcat "\nNew Text &amp;lt;" *att-s* "&amp;gt;: ")))
    (setq *att-s* (cond ((= f "")	*att-s*)
			((= f " ") 	"")
			(T		f)))
    (setpropertyvalue e "TextString" *att-s*))
  (princ)
  )
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 09 Feb 2022 07:58:02 GMT</pubDate>
    <dc:creator>ВeekeeCZ</dc:creator>
    <dc:date>2022-02-09T07:58:02Z</dc:date>
    <item>
      <title>Held Editing Multiple Block Attributes using a simple lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10937686#M49302</link>
      <description>&lt;P&gt;I have the following code that I use to quickly modify a block attribute. Sometime it doesn't work and I get the following error&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Type the New Text: 4 ; error: ActiveX Server returned the error: unknown name: TextString&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;**************************************&lt;/P&gt;&lt;P&gt;(defun c:NTag (/ ent obj new)&lt;BR /&gt;(vl-load-com)&lt;BR /&gt;(if (setq ent (car (nentsel "\nSelect Att Tag to Edit:")))&lt;BR /&gt;(progn (setq obj (vlax-ename-&amp;gt;vla-object ent))&lt;BR /&gt;(setq new (getstring "\nType the New Text: "))&lt;BR /&gt;(vla-put-textstring obj new)&lt;BR /&gt;(C:NTag)&lt;BR /&gt;);progn&lt;BR /&gt;(princ)&lt;BR /&gt;);if&lt;BR /&gt;)&amp;nbsp;&lt;/P&gt;&lt;P&gt;****************************************************&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;RR&lt;/P&gt;</description>
      <pubDate>Tue, 08 Feb 2022 23:42:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10937686#M49302</guid>
      <dc:creator>rrevillardHTGWV</dc:creator>
      <dc:date>2022-02-08T23:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: Held Editing Multiple Block Attributes using a simple lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10937766#M49303</link>
      <description>&lt;P&gt;I dislike the extra steps in ATTEDIT as well.&lt;/P&gt;
&lt;P&gt;Try this:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun c:AE ( / *error* e ent old new dummy)
  (defun *error* (err)
    (and dummy (entget dummy)(entdel dummy))
    (princ)
  )
  (while (setq e (car (nentsel "\nSelect attribute to modify: ")))
    (setq ent (entget e))
    (setq old (assoc 1 ent))
    (setq dummy
      (entmakex (list '(0 . "TEXT")'(10 0.0 0.0 0.0)'(11 0.0 0.0 0.0)
      '(7 . "Standard")'(40 . 1.0) old '(60 . 1)) ;; invisible
      )
    )
    (command "_.textedit" dummy "")
    (setq new (assoc 1 (entget dummy)))
    (entmod (subst new old ent))
    (entupd e)
    (entdel dummy)
  )
  (*error* nil)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 09 Feb 2022 00:35:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10937766#M49303</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2022-02-09T00:35:40Z</dc:date>
    </item>
    <item>
      <title>Re: Held Editing Multiple Block Attributes using a simple lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10938049#M49304</link>
      <description>&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for looking at this and responding so quickly. It does work as intended, but would it be possible to edit the attribute through the command line instead of the a text window to quickly modify it. Also, would this lisp work in the attribute of a block imbedded in a custom multi-leader?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm using a arrow block w/ one attribute to number photo locations on a plan.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ronny&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 05:10:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10938049#M49304</guid>
      <dc:creator>rrevillardHTGWV</dc:creator>
      <dc:date>2022-02-09T05:10:25Z</dc:date>
    </item>
    <item>
      <title>Re: Held Editing Multiple Block Attributes using a simple lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10938250#M49305</link>
      <description>&lt;P&gt;You can hold CTRL while double-clicking to quickly edit atts without dlg.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or try this routine. But not for callouts.&lt;/P&gt;
&lt;PRE&gt;(defun c:Att (/ e f)
  
  (or *att-s* (setq *att-s* ""))
  (while (setq e (car (nentsel "\nPick an Attribute: ")))
    (princ "\nUse \\P for paragraph, space for none.")
    (setq f (getstring T (strcat "\nNew Text &amp;lt;" *att-s* "&amp;gt;: ")))
    (setq *att-s* (cond ((= f "")	*att-s*)
			((= f " ") 	"")
			(T		f)))
    (setpropertyvalue e "TextString" *att-s*))
  (princ)
  )
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 07:58:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10938250#M49305</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2022-02-09T07:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: Held Editing Multiple Block Attributes using a simple lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10938320#M49306</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9282975"&gt;@rrevillardHTGWV&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;... Also, would this lisp work in the attribute of a block imbedded in a custom multi-leader?&amp;nbsp;&lt;/SPAN&gt;...&lt;/P&gt;
&lt;P&gt;Ronny&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;How many atts this block have? It could be an issue to identify which one to edit if there is more than one.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 09:46:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10938320#M49306</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2022-02-09T09:46:48Z</dc:date>
    </item>
    <item>
      <title>Re: Held Editing Multiple Block Attributes using a simple lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10938406#M49307</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9282975"&gt;@rrevillardHTGWV&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I have the following code that I use to quickly modify a &lt;STRONG&gt;block attribute&lt;/STRONG&gt;. Sometime it doesn't work and I get the following error&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;PRE&gt;(defun c:NTag (/ ent obj new)
  (vl-load-com)
  (if &lt;FONT color="#0000FF"&gt;(and&lt;/FONT&gt;
	(setq ent (car (nentsel "\nSelect Att Tag to Edit:")))
&lt;FONT color="#0000FF"&gt;	(equal (assoc 0 (entget ent)) '(0 . "ATTRIB"))
	(setq new (getstring "\nType the New Text: "))
	(/= "" new)
	)&lt;/FONT&gt;
    (progn (setq obj (vlax-ename-&amp;gt;vla-object ent))
	   (vla-put-textstring obj new)
	   (C:NTag)
    )					;progn
    (princ)
  )					;if
)
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;HTH&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 09:11:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10938406#M49307</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2022-02-09T09:11:43Z</dc:date>
    </item>
    <item>
      <title>Re: Held Editing Multiple Block Attributes using a simple lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10938998#M49308</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;/P&gt;
&lt;P&gt;I don't understand why you are calling c:NTag from within c:NTag.&lt;/P&gt;
&lt;P&gt;If you want it to repeat, then why not use a while loop? (Or I am missing something as usual.)&lt;/P&gt;
&lt;P&gt;Anyway, your answer is what I think&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9282975"&gt;@rrevillardHTGWV&lt;/a&gt;&amp;nbsp;would like, except maybe that should be (getstring T) to allow spaces.&lt;/P&gt;
&lt;P&gt;Also, you don't need (if (and (progn...))).&amp;nbsp; Just an (and ...) will suffice with one caveat: (vla-put-*) always returns nil.&amp;nbsp; So I use the technique (or (vla-whatever ...) 1).&amp;nbsp; Yes, you should know that I don't like T because you can't be absolutely sure it exists, whereas you can't (setq 1 nil).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Meanwhile, I've saved a bundle of millisecs with my c:CN function (Change Number).&amp;nbsp; It finds the first numeric string in any text, mtext, attribute, or multileader and let's you just type in a new value, leaving the surrounding string intact.&amp;nbsp; So you don't have to cursor over and delete or backspace and Ctrl+Enter.&amp;nbsp; Just CN; pick entity; type in new #; hit return.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 13:30:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10938998#M49308</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2022-02-09T13:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Held Editing Multiple Block Attributes using a simple lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10939004#M49309</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9282975"&gt;@rrevillardHTGWV&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Take a look at what&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;&amp;nbsp;posted.&amp;nbsp; I think that will suit you.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 13:32:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10939004#M49309</guid>
      <dc:creator>john.uhden</dc:creator>
      <dc:date>2022-02-09T13:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: Held Editing Multiple Block Attributes using a simple lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10939187#M49310</link>
      <description>&lt;P&gt;Just one attribute. See picture attached. Thank you for your help&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 14:30:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10939187#M49310</guid>
      <dc:creator>rrevillardHTGWV</dc:creator>
      <dc:date>2022-02-09T14:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: Held Editing Multiple Block Attributes using a simple lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10939729#M49311</link>
      <description>&lt;P&gt;Ok,&amp;nbsp;it changes the att that you pick, or the first one if its a MULTILEADER (no matter what you pick).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(vl-load-com)

(defun c:QAttEdit (/ e f BLM:setmleaderblockattributevalue)
  
  ;; Set MLeader Block Attribute Value  -  Lee Mac, edited by Beekee
  ;; mld - [vla] MLeader object with attributed block content
  ;; tag - [str] Attribute tag whose value will be modified
  ;; val - [str] New attribute value
  
  (defun BLM:setmleaderblockattributevalue ( mld val )
    (if (= acblockcontent (vla-get-contenttype mld))
      (vl-catch-all-error-p
	(vl-catch-all-apply
	  '(lambda ( / oid )
	     (vlax-for obj
		       (vla-item
			 (vla-get-blocks (vla-get-document mld))
			 (vla-get-contentblockname mld)
			 )
	       (if (and (= "AcDbAttributeDefinition" (vla-get-objectname obj))
			(= :vlax-false (vla-get-constant obj))
			)
		 (progn
		   (if (vlax-property-available-p obj 'objectid32)
		     (setq oid (vla-get-objectid32 obj))
		     (setq oid (vla-get-objectid   obj))
		     )
		   (if (vlax-method-applicable-p mld 'setblockattributevalue32)
		     (vla-setblockattributevalue32 mld oid val)
		     (vla-setblockattributevalue   mld oid val)
		     )
		   (exit)))))))))
  
 ; ------------------------------------------------------------------------------- 
  
  (or *att-s* (setq *att-s* ""))
  (while (setq e (car (nentsel "\nPick an Attribute: ")))
    (princ "\nUse \\P for paragraph, space for none.")
    (setq f (getstring T (strcat "\nNew Text &amp;lt;" *att-s* "&amp;gt;: ")))
    (setq *att-s* (cond ((= f "")	*att-s*)
			((= f " ") 	"")
			(T		f)))
    
    (if (= "MULTILEADER" (cdr (assoc 0 (entget e))))
      (BLM:setmleaderblockattributevalue (vlax-ename-&amp;gt;vla-object e) *att-s*)
      (setpropertyvalue e "TextString" *att-s*)))
  (princ)
  )
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 17:14:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10939729#M49311</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2022-02-09T17:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: Held Editing Multiple Block Attributes using a simple lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10940002#M49312</link>
      <description>&lt;P&gt;Thank you so much. This works great.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just one question as I'm not very familiar with lisp yet. I thought GetString allows for both [Enter] and [Spacebar] input, but when I press the [Spacebar] it adds a space and only accepts the new attribute text after [Enter] is pressed.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there additional code that could add this functionality?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you again for all the help&lt;/P&gt;</description>
      <pubDate>Wed, 09 Feb 2022 19:02:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10940002#M49312</guid>
      <dc:creator>rrevillardHTGWV</dc:creator>
      <dc:date>2022-02-09T19:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Held Editing Multiple Block Attributes using a simple lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10940101#M49313</link>
      <description>&lt;P&gt;It's the T from (getstring T) that makes a difference.&lt;/P&gt;
&lt;P&gt;If you don't need spaces within atts it's convenient to remove it.&lt;/P&gt;
&lt;P&gt;You can also remove the note about paragraphs if you don't use a multiline att.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 20:07:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10940101#M49313</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2022-02-10T20:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: Held Editing Multiple Block Attributes using a simple lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10940341#M49314</link>
      <description>Awesome, thank you again for all your help. This lisp we'll make a huge difference. Cheers&lt;BR /&gt;</description>
      <pubDate>Wed, 09 Feb 2022 21:23:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10940341#M49314</guid>
      <dc:creator>rrevillardHTGWV</dc:creator>
      <dc:date>2022-02-09T21:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Held Editing Multiple Block Attributes using a simple lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10940933#M49315</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9282975"&gt;@rrevillardHTGWV&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Just one attribute. See picture attached. Thank you for your help&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT size="3"&gt;A Multileader attribute!&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Hey!, who knew?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="who knew.png" style="width: 119px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1023241i64A9032352A6850A/image-dimensions/119x166?v=v2" width="119" height="166" role="button" title="who knew.png" alt="who knew.png" /&gt;&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Feb 2022 03:41:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/held-editing-multiple-block-attributes-using-a-simple-lisp/m-p/10940933#M49315</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2022-02-10T03:41:53Z</dc:date>
    </item>
  </channel>
</rss>

