<?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 Rename Multiple Blocks in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821025#M68628</link>
    <description>&lt;P&gt;Is there lisp routine that will allow you to rename multiple blocks at once?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anderson51&lt;/P&gt;</description>
    <pubDate>Fri, 23 Oct 2020 16:35:13 GMT</pubDate>
    <dc:creator>anderson51</dc:creator>
    <dc:date>2020-10-23T16:35:13Z</dc:date>
    <item>
      <title>Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821025#M68628</link>
      <description>&lt;P&gt;Is there lisp routine that will allow you to rename multiple blocks at once?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anderson51&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 16:35:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821025#M68628</guid>
      <dc:creator>anderson51</dc:creator>
      <dc:date>2020-10-23T16:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821037#M68629</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/74986"&gt;@anderson51&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There sure is:&lt;/P&gt;&lt;PRE&gt;(defun c:RMB ( / lstBlocks)
  ;Rename Multiple Blocks
  ;Prep
  (setq lstBlocks '(
    ;("old_name" "new_name")
    ("Block A" "Block 1")
    ("BLOCK B" "Block 2")
  ))
  ;Begin work
  (setvar 'CMDECHO 0)
  (foreach blk lstBlocks
    (command "-RENAME" "b" (car blk) (cadr blk))
  );foreach
  (setvar 'CMDECHO 1)
  ;Finish up
  (prompt "\nBlock Re-Naming Complete.")
  (princ)
);defun&lt;/PRE&gt;</description>
      <pubDate>Fri, 23 Oct 2020 16:42:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821037#M68629</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2020-10-23T16:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821046#M68630</link>
      <description>&lt;P&gt;You may find these code snippets useful&amp;nbsp;&lt;A href="https://jtbworld.com/autocad-axblock-lsp" target="_blank"&gt;https://jtbworld.com/autocad-axblock-lsp&lt;/A&gt; and if you find you need further help feel free to use the contact page. &lt;A href="https://jtbworld.com/jtb-batch-change-for-autocad" target="_blank" rel="noopener"&gt;JTB Batch Change&lt;/A&gt; is another option.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 16:47:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821046#M68630</guid>
      <dc:creator>JTBWorld</dc:creator>
      <dc:date>2020-10-23T16:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821056#M68631</link>
      <description>&lt;P&gt;Is there a way to have it pull up in list form, similar to how the rename command works?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Block Rename.png" style="width: 715px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/835568i1E23881B3F3F41FB/image-size/large?v=v2&amp;amp;px=999" role="button" title="Block Rename.png" alt="Block Rename.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 16:51:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821056#M68631</guid>
      <dc:creator>anderson51</dc:creator>
      <dc:date>2020-10-23T16:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821103#M68632</link>
      <description>&lt;P&gt;Yes it can be done. Either learn to program, hope someone create it for free or pay to get it done. I can help but not for free.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 17:17:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821103#M68632</guid>
      <dc:creator>JTBWorld</dc:creator>
      <dc:date>2020-10-23T17:17:11Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821116#M68633</link>
      <description>&lt;P&gt;Have a nice day Jimmy!&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 17:24:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821116#M68633</guid>
      <dc:creator>anderson51</dc:creator>
      <dc:date>2020-10-23T17:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821131#M68634</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/74986"&gt;@anderson51&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't understand. If you want to rename them via a form, then why not just use the original RENAME command?&lt;/P&gt;&lt;P&gt;I can not think of any effective mechanic / workflow to rename multiple blocks at once via a form that would be more-efficient than the original command..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you describe what you have in mind that would be faster?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Because, we can easily create a form to select multiple blocks at once.. but then what.. loop through each one asking for a new name? that would be essentially the same as the original command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;~DD&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 17:34:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821131#M68634</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2020-10-23T17:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821139#M68635</link>
      <description>&lt;LI-CODE lang="general"&gt;(defun c:renmblocks nil (renmblocks))
(defun renmblocks ( / get-blocks getallblocks nonincluded blocklist dont oldblock newname)

	(defun getblocks (/ adoc name lst)
	  (vlax-for block (vla-get-blocks (vla-get-activedocument (vlax-get-acad-object)))
		(if (and  (equal (vla-get-IsLayout block) :vlax-false)
				  (equal (vla-get-IsXref block) :vlax-false)
				  (/= (substr (vla-get-Name block) 1 1) "*")) 
			 (setq lst (cons (vla-get-Name block) lst))
		  ) 
		) 
	  lst
	)
	(defun getallblocks ( / lst)(vlax-for block (vla-get-blocks (vla-get-activedocument (vlax-get-acad-object)))(setq lst (cons (vla-get-Name block) lst))) lst)
	(defun nonincluded(a b) (if a (if (not(member (car a) b)) (cons (car a) (nonincluded (cdr a) b)) (nonincluded (cdr a)b) ) ) )
	(setq blocklist (getblocks))
	(setq dont (nonincluded (getallblocks) blocklist))
	(foreach bname blocklist
		(initget 1)
		(setq newname (getstring (strcat"\nNew name for block &amp;lt;" bname "&amp;gt;:" )))
		(setq oldblock (vla-item(vla-get-blocks (vla-get-activedocument (vlax-get-acad-object))) bname))
		(if 
			(and
				(&amp;gt; (strlen newname) 0)
				(not (member newname dont))
			)
			(vlax-put oldblock 'name newname)
		)
	)
(princ "\nDone")
)
(princ)&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 23 Oct 2020 17:37:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821139#M68635</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2020-10-23T17:37:02Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821141#M68636</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/405101"&gt;@JTBWorld&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;You may find these code snippets useful&amp;nbsp;&lt;A href="https://jtbworld.com/autocad-axblock-lsp" target="_blank" rel="noopener"&gt;https://jtbworld.com/autocad-axblock-lsp&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;;;; By Jimmy Bergmark
;;; Copyright (C) 1997-2016 JTB World Inc., All Rights Reserved&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="3"&gt;Thats is a classic&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_smiling_eyes:"&gt;😊&lt;/span&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 17:42:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821141#M68636</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2020-10-23T17:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821146#M68637</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5530556"&gt;@hak_vz&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If OP is NOT trying to rename EVERY block, then I do not think that looping through every block in the drawing and asking for each to be renamed is a practical or efficient method. Again, I believe the original command would accomplish it better.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;--EDIT--&lt;/P&gt;&lt;P&gt;Also, I do not believe that the (initget 1) flag works on the (getstring ...) method.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;~DD&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 17:44:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821146#M68637</guid>
      <dc:creator>CodeDing</dc:creator>
      <dc:date>2020-10-23T17:44:33Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821156#M68638</link>
      <description>&lt;P&gt;The fact that you have to invoke the command each time slows you down. Also, you have to scroll thru the list each time to find the block you want to rename, depending on the list size, you could be scrolling a while to find the block.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It would definitely save time to pick multiple and rename multiple at the same time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anderson51&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 17:43:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821156#M68638</guid>
      <dc:creator>anderson51</dc:creator>
      <dc:date>2020-10-23T17:43:23Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821161#M68639</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5680873"&gt;@CodeDing&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5530556"&gt;@hak_vz&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If OP is NOT trying to rename EVERY block, then I do not think that looping through every block in the drawing and asking for each to be renamed is a practical or efficient method. Again, I believe the original command would accomplish it better.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;DD I agree with you. Original command is best option, at least from security point of view,&lt;/P&gt;&lt;P&gt;It actually mimics -rename, but then offer names of all blocks that can be modified (removes xrefs and layouts).&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To skip rename one just have to hit &amp;lt;enter&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've jumbled this code in last 20 mins just for fun, so you can find some stupid entries i.e initget on getstring &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 17:54:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821161#M68639</guid>
      <dc:creator>hak_vz</dc:creator>
      <dc:date>2020-10-23T17:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821291#M68640</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/74986"&gt;@anderson51&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just checking: Are you aware of the use of "*" as a wildcard?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 19:14:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821291#M68640</guid>
      <dc:creator>dmfrazier</dc:creator>
      <dc:date>2020-10-23T19:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821316#M68641</link>
      <description>&lt;P&gt;Would you give us list of examples of block names and how they should be renamed?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 19:33:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821316#M68641</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2020-10-23T19:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821319#M68642</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/74986"&gt;@anderson51&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;....&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;It would definitely save time to pick multiple and rename multiple at the same time.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;....&lt;/SPAN&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I'm trying to understand the procedure you envision.&amp;nbsp; Say you can pick multiple Block names that you want to rename, from a list or dialog box or something.&amp;nbsp; Then what?&amp;nbsp; How are you expecting to give them their new names, other than one at a time?&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 19:36:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821319#M68642</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2020-10-23T19:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821325#M68643</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/74986"&gt;@anderson51&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;The fact that you have to invoke the command each time slows you down....&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;
&lt;P&gt;Are you aware that you can actually hit the button "Rename To" to quickly rename an item without closing a dialog...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Z9E3zK5E_0-1603482316413.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/835622i628B372DEE59C163/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Z9E3zK5E_0-1603482316413.png" alt="Z9E3zK5E_0-1603482316413.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 19:45:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821325#M68643</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2020-10-23T19:45:42Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821341#M68644</link>
      <description>&lt;P&gt;Below is an example list.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Say I wanted to rename the following:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DS-145-301-a1 to DS-146-302-a8&lt;/P&gt;&lt;P&gt;DS-145-301-a2 to DS-146-302-a9&lt;/P&gt;&lt;P&gt;DS-145-301-a3 to DS-146-302-a10&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would have to invoke the command 3 separate times, scroll to the block, and rename accordingly. It would be nice to take care of&amp;nbsp; it all during the single execution of the command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The existing rename command would work perfectly if you could simply "OK" it without it exiting the command, and moving on to the next block you want to rename....if that makes sense?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Block Rename.png" style="width: 710px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/835623iB26240A8C78DF5A8/image-size/large?v=v2&amp;amp;px=999" role="button" title="Block Rename.png" alt="Block Rename.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 19:58:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821341#M68644</guid>
      <dc:creator>anderson51</dc:creator>
      <dc:date>2020-10-23T19:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821346#M68645</link>
      <description>&lt;P&gt;WOW.&lt;/P&gt;&lt;P&gt;I was completely unaware that you could simply click "rename to" and move on to the next one. For some reason I was under the impression you had to click OK in order to complete the renaming.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Learn something new everyday.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 20:03:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821346#M68645</guid>
      <dc:creator>anderson51</dc:creator>
      <dc:date>2020-10-23T20:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821355#M68646</link>
      <description>&lt;P&gt;In addition to using that handy "Rename to" button, you could also take advantage of using the "*" wildcard character to expedite some of the renaming. It may be necessary to do the renaming in stages, e.g. first change "145-301" to "146-302", followed by the other segments.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 20:05:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821355#M68646</guid>
      <dc:creator>dmfrazier</dc:creator>
      <dc:date>2020-10-23T20:05:38Z</dc:date>
    </item>
    <item>
      <title>Re: Rename Multiple Blocks</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821357#M68647</link>
      <description>&lt;P&gt;I am not sure I am following what you mean, can you give me an example?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 23 Oct 2020 20:07:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/rename-multiple-blocks/m-p/9821357#M68647</guid>
      <dc:creator>anderson51</dc:creator>
      <dc:date>2020-10-23T20:07:36Z</dc:date>
    </item>
  </channel>
</rss>

