<?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: Editing multiple single-line text entities.... again! in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285286#M132700</link>
    <description>&lt;P&gt;TEXTEDITMODE was the problem.... or so I believe.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It was initially set to 0 (&lt;SPAN style="color: #333333; font-family: FrutigerNext, Arial, Helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 17.5px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #eeeeee; display: inline !important; float: none;"&gt;Sets the TEXTEDIT command to repeat automatically&lt;/SPAN&gt;).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I set it to 1 (&lt;SPAN style="color: #333333; font-family: FrutigerNext, Arial, Helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 17.5px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; display: inline !important; float: none;"&gt;Sets the TEXTEDIT command to edit a single text object&lt;/SPAN&gt;) and now the lsp works as it was originally.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is that a new variable?&lt;/P&gt;</description>
    <pubDate>Thu, 21 Apr 2016 19:20:02 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-04-21T19:20:02Z</dc:date>
    <item>
      <title>Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285024#M132690</link>
      <description>&lt;P&gt;Deja vu!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I had this same list file not work after updating to 2015 and now after updating to 2017, it is not working again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, to state again:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My company has used single-line text for schedules forever.&amp;nbsp; No one is interested in using AutoCAD's tables or using Excel to create those schedules.&amp;nbsp; I rather, I could say, the bosses are not interested in paying me to update those schedules.&amp;nbsp; Which is fine, most of the people here have been using these schedules for at least 10 years.&amp;nbsp; We know it works, we know it's limitations, we feel comfortable using it.&amp;nbsp; So, please don't suggest we do anything different than what we do.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That being said, here is the lisp file:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(defun C:ME (/ A B C D E F G H J K L M )&lt;BR /&gt;&amp;nbsp; (graphscr)&lt;BR /&gt;&amp;nbsp; (setvar "BLIPMODE" 0)&lt;BR /&gt;&amp;nbsp; (SETVAR "CMDECHO" 0)&lt;BR /&gt;&amp;nbsp; (SETVAR "HIGHLIGHT" 1)&lt;BR /&gt;&amp;nbsp; (PROMPT "\nMULTI-EDIT IS LOADED ...&amp;nbsp; ")&lt;BR /&gt;&amp;nbsp; (SETQ A (SSGET '((0 . "TEXT,INSERT"))) B (SSLENGTH A) C 0)&lt;BR /&gt;&amp;nbsp; (WHILE (&amp;lt; C B)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ D (SSNAME A C)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; E (ENTGET D)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ F (CAR E))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ G (CDR E))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ H (CAR G))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ J (CDR H))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ K "TEXT")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ L "INSERT")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ M "DIMENSION")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (IF (= J K) (COMMAND ".TEXTEDIT" D)(COMMAND ".DDATTE" D ))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (TERPRI)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ C (1+ C))&lt;BR /&gt;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp; (PRINC)&lt;BR /&gt;); END ME.LSP&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I cannot seem to figure out what is causing the problem.&amp;nbsp; Any help would be greatly appreciated!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 17:36:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285024#M132690</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-21T17:36:20Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285111#M132691</link>
      <description>&lt;P&gt;Just a guess, I don't have AC2017 in this old laptop...&lt;/P&gt;
&lt;P&gt;Try to change&lt;/P&gt;
&lt;P&gt;DDATTE&lt;/P&gt;
&lt;P&gt;to&lt;/P&gt;
&lt;P&gt;ATTEDIT&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps, &lt;BR /&gt;Henrique&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 18:14:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285111#M132691</guid>
      <dc:creator>hmsilva</dc:creator>
      <dc:date>2016-04-21T18:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285118#M132692</link>
      <description>Nope, sorry. Still get the same problem.&lt;BR /&gt;&lt;BR /&gt;Robyn Henke&lt;BR /&gt;Senior CADD/Revit Technician&lt;BR /&gt;JDR Engineering, Inc.&lt;BR /&gt;&lt;A href="http://www.jdrengineering.com" target="_blank"&gt;www.jdrengineering.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;5525 Nobel Drive | Suite 110 | Madison, WI 53711&lt;BR /&gt;T: 608-277-1728| F: 608-271-7046 | Direct: 608-819-0174 | henke@jdreng.com</description>
      <pubDate>Thu, 21 Apr 2016 18:17:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285118#M132692</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-21T18:17:26Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285120#M132693</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;....&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I had this same list file not work after updating to 2015 and now after updating to 2017, it is not working again.&lt;/P&gt;
&lt;P&gt;....&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(defun C:ME (/ A B C D E F G H J K L M )&lt;BR /&gt;&amp;nbsp; (graphscr)&lt;BR /&gt;&amp;nbsp; (setvar "BLIPMODE" 0)&lt;BR /&gt;&amp;nbsp; (SETVAR "CMDECHO" 0)&lt;BR /&gt;&amp;nbsp; (SETVAR "HIGHLIGHT" 1)&lt;BR /&gt;&amp;nbsp; (PROMPT "\nMULTI-EDIT IS LOADED ...&amp;nbsp; ")&lt;BR /&gt;&amp;nbsp; (SETQ A (SSGET '((0 . "TEXT,INSERT"))) B (SSLENGTH A) C 0)&lt;BR /&gt;&amp;nbsp; (WHILE (&amp;lt; C B)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ D (SSNAME A C)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; E (ENTGET D)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ F (CAR E))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ G (CDR E))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ H (CAR G))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ J (CDR H))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ K "TEXT")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ L "INSERT")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ M "DIMENSION")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (IF (= J K) (COMMAND ".TEXTEDIT" D)(COMMAND ".DDATTE" D ))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (TERPRI)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ C (1+ C))&lt;BR /&gt;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp; (PRINC)&lt;BR /&gt;); END ME.LSP&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I cannot seem to figure out what is causing the problem.&amp;nbsp; Any help would be greatly appreciated!&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You don't say what "not working" means.&amp;nbsp; Does it fail to load?&amp;nbsp; Does it load but not run?&amp;nbsp; Does it run but give different results than you expect?&amp;nbsp; What does it not do that you expect it to?&amp;nbsp; What does it do that you don't expect?&amp;nbsp; Any error messages?&amp;nbsp; Etc., etc.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I may say so, that's a very peculiar way to get an entity type.&amp;nbsp; I don't have 2017 here, but it could be that it lists entity data in a slightly different way.&amp;nbsp; That code requires the entity-type entry to be exactly the second one in the entity data list, but maybe it's not in 2017.&amp;nbsp; If that's the cause of the problem, you can &lt;FONT color="#ff0000"&gt;get the entity type directly&lt;/FONT&gt;, &lt;EM&gt;whatever&lt;/EM&gt; position its entry&amp;nbsp;is in the list, and shorten the code considerably by doing so [there are also several unused variables], something like [untested]:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(defun C:ME (/ A B C D&amp;nbsp;J)&lt;BR /&gt;&amp;nbsp; (graphscr)&lt;BR /&gt;&amp;nbsp; (setvar "BLIPMODE" 0)&lt;BR /&gt;&amp;nbsp; (SETVAR "CMDECHO" 0)&lt;BR /&gt;&amp;nbsp; (SETVAR "HIGHLIGHT" 1)&lt;BR /&gt;&amp;nbsp; (PROMPT "\nMULTI-EDIT IS LOADED ...&amp;nbsp; ")&lt;BR /&gt;&amp;nbsp; (SETQ A (SSGET '((0 . "TEXT,INSERT"))) B (SSLENGTH A) C 0)&lt;BR /&gt;&amp;nbsp; (WHILE (&amp;lt; C B)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;D (SSNAME A C)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;J &lt;FONT color="#ff0000"&gt;(CDR (assoc 0 (entget D)))&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (IF &lt;FONT color="#ff0000"&gt;(= J "TEXT")&lt;/FONT&gt; (COMMAND ".TEXTEDIT" D) (COMMAND ".DDATTE" D ))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (TERPRI)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ C (1+ C))&lt;BR /&gt;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp; (PRINC)&lt;BR /&gt;); END ME.LSP&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or even without the J variable:&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;P&gt;&amp;nbsp; (WHILE (&amp;lt; C B)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ&amp;nbsp;D (SSNAME A C))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (IF &lt;FONT color="#ff0000"&gt;(= &lt;FONT color="#ff0000"&gt;(CDR (assoc 0 (entget D)))&lt;/FONT&gt; "TEXT")&lt;/FONT&gt; (COMMAND ".TEXTEDIT" D) (COMMAND ".DDATTE" D ))&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 18:18:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285120#M132693</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2016-04-21T18:18:00Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285135#M132694</link>
      <description>&lt;P&gt;I know the code is odd. This lisp has been with "us" since before I started in 1999.&lt;BR /&gt;&lt;BR /&gt;Have not had the ambition to fix it or make it better, have just kept using as is.&lt;BR /&gt;&lt;BR /&gt;Your suggestion did not work.&lt;BR /&gt;&lt;BR /&gt;This is the error I have gotten after trying all suggestions:&lt;BR /&gt;&lt;BR /&gt;Command: ME2&lt;BR /&gt;&lt;BR /&gt;MULTI-EDIT IS LOADED ...&lt;BR /&gt;Select objects: 1 found&lt;BR /&gt;&lt;BR /&gt;Select objects: 1 found, 2 total&lt;BR /&gt;&lt;BR /&gt;Select objects: 1 found, 3 total&lt;BR /&gt;&lt;BR /&gt;Select objects: 1 found, 4 total&lt;BR /&gt;&lt;BR /&gt;Select objects: 1 found, 5 total&lt;BR /&gt;&lt;BR /&gt;Select objects: 1 found, 6 total&lt;BR /&gt;&lt;BR /&gt;Select objects: 1 found, 7 total&lt;BR /&gt;&lt;BR /&gt;Select objects:&lt;BR /&gt;&lt;BR /&gt;Current settings: Edit mode = Multiple&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;*Invalid selection*&lt;BR /&gt;Expects a point or Last/Undo&lt;BR /&gt;&lt;FONT color="#FF0000"&gt;ERROR: Function cancelledAutoCAD variable setting rejected: "MENUECHO" nil&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;The above error, minus the line is red, is the error I was originally getting.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 18:40:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285135#M132694</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-21T18:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285164#M132695</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;....&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (IF (= J K) (COMMAND ".TEXTEDIT" D)(COMMAND ".DDATTE" D ))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (TERPRI)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ C (1+ C))&lt;BR /&gt;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp; (PRINC)&lt;BR /&gt;); END ME.LSP&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I would think if this were the issue, it would have not worked in &lt;EM&gt;any&lt;/EM&gt; version, but here goes....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That looks like it doesn't allow for any User input to actually&lt;EM&gt; do the editing&lt;/EM&gt;, but calls up one of the commands, and while that's presumably waiting for editing input, goes on to look at the next object.&amp;nbsp; Without setting up the situation and trying it, you may need something like a &lt;FONT color="#3366ff"&gt;check on whether the command is still active and pause to wait for User input until it's done&lt;/FONT&gt;, before moving on, such as:&lt;BR /&gt;....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (IF (= J K) (COMMAND ".TEXTEDIT" D)(COMMAND ".DDATTE" D ))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;FONT color="#3366ff"&gt;(while (&amp;gt; (getvar 'cmdactive) 0) (command pause)))&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (setq C (1+ C))&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;which works in certain kinds of commands, but I'm not sure how that relates to &lt;EM&gt;in-view&lt;/EM&gt; text editing as that works in recent versions.&amp;nbsp; Or if the in-view editing box is considered a "dialog box" condition, you may need to &lt;FONT color="#339966"&gt;force it to bring that up&lt;/FONT&gt;, since the default in (command) functions is to operate &lt;EM&gt;without&lt;/EM&gt; the dialog box unless you &lt;EM&gt;do&lt;/EM&gt; call for it:&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#339966"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (initdia)&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (if (= J ....&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 18:40:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285164#M132695</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2016-04-21T18:40:32Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285187#M132696</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;....&lt;BR /&gt;*Invalid selection*&lt;BR /&gt;Expects a point or Last/Undo&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;....&lt;/FONT&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;As for that, does it work right if &lt;EM&gt;every object selected is Text&lt;/EM&gt; and none are Attributes?&amp;nbsp; In the case of Attributes, the "object" it gets when it steps through the selection set will be the &lt;EM&gt;Block&lt;/EM&gt;, which you may have selected somewhere other than on an Attribute, or as part of a Window selection.&amp;nbsp;&amp;nbsp;It may need&amp;nbsp;a &lt;EM&gt;location&lt;/EM&gt; in order to find &lt;EM&gt;which&lt;/EM&gt; Attribute to edit, since Blocks can have&amp;nbsp;more than one [and it may need that even in the case of a Block that &lt;EM&gt;has&lt;/EM&gt; only one].&amp;nbsp; But if you pick &lt;EM&gt;only Text&lt;/EM&gt;, that presumably would not be an issue, since the entity name alone should be enough for it to know what to work with.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 18:47:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285187#M132696</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2016-04-21T18:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285207#M132697</link>
      <description>&lt;P&gt;It worked with only text and any text that had attributes.&amp;nbsp; It was an awesome lisp for our purposes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am thinking of passing this one on to a person in our office who is a little more versed in lisp language.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am no expert, not even a novice really.&amp;nbsp; I learned all this on my own by "reverse engineering" all the lisps we use.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have not understood the language in most of the replies to this thread!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I do like learning and don't just want to say "Please write me this lisp" and thank you very much, but it seems very complicated to me.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 18:52:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285207#M132697</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-21T18:52:35Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285227#M132698</link>
      <description>&lt;P&gt;I just opened up 2016 and tried the ME lisp and is works great!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Command: me&lt;BR /&gt;&lt;BR /&gt;MULTI-EDIT IS LOADED ...&lt;BR /&gt;Select objects: 1 found&lt;BR /&gt;&lt;BR /&gt;Select objects: 1 found, 2 total&lt;BR /&gt;&lt;BR /&gt;Select objects: 1 found, 3 total&lt;BR /&gt;&lt;BR /&gt;Select objects: 1 found, 4 total&lt;BR /&gt;&lt;BR /&gt;Select objects: 1 found, 5 total&lt;BR /&gt;&lt;BR /&gt;Select objects:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did notice there was no "Current settings:&amp;nbsp; Edit mode = Multiple" line.&amp;nbsp; Is that significant?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 19:00:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285227#M132698</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-21T19:00:17Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285254#M132699</link>
      <description>I would try change the settings...&lt;BR /&gt;Current settings: Edit mode = Multiple -&amp;gt; to Single?&lt;BR /&gt;&lt;BR /&gt;Then maybe &lt;BR /&gt;(COMMAND ".TEXTEDIT" D PAUSE "")&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 21 Apr 2016 19:11:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285254#M132699</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2016-04-21T19:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285286#M132700</link>
      <description>&lt;P&gt;TEXTEDITMODE was the problem.... or so I believe.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It was initially set to 0 (&lt;SPAN style="color: #333333; font-family: FrutigerNext, Arial, Helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 17.5px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #eeeeee; display: inline !important; float: none;"&gt;Sets the TEXTEDIT command to repeat automatically&lt;/SPAN&gt;).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I set it to 1 (&lt;SPAN style="color: #333333; font-family: FrutigerNext, Arial, Helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 17.5px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; display: inline !important; float: none;"&gt;Sets the TEXTEDIT command to edit a single text object&lt;/SPAN&gt;) and now the lsp works as it was originally.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is that a new variable?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 19:20:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285286#M132700</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-21T19:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285307#M132701</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;TEXTEDITMODE ....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is that a new variable?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Must be -- it's not recognized here in AutoCAD 2016.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 19:25:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285307#M132701</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2016-04-21T19:25:39Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285316#M132702</link>
      <description>&lt;P&gt;Ok, I know what was causing my problem, but I assume when I install 2017, that variable will be set to 0 and I know some users will like it kept that way.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, using ME will not work for them, so, can someone please help me with how to add to the lsp to set that variable to 1 before running it and then setting it back to 0 after the user is done?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Again, here is the original lisp:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(defun C:ME (/ A B C D E F G H J K L M )&lt;BR /&gt;&amp;nbsp; (graphscr)&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;FONT color="#FF0000"&gt;(setvar "TEXTEDITMODE" 1)&lt;/FONT&gt;&lt;BR /&gt;&amp;nbsp; (setvar "BLIPMODE" 0)&lt;BR /&gt;&amp;nbsp; (SETVAR "CMDECHO" 0)&lt;BR /&gt;&amp;nbsp; (SETVAR "HIGHLIGHT" 1)&lt;BR /&gt;&amp;nbsp; (PROMPT "\nMULTI-EDIT IS LOADED ...&amp;nbsp; ")&lt;BR /&gt;&amp;nbsp; (SETQ A (SSGET '((0 . "TEXT,INSERT"))) B (SSLENGTH A) C 0)&lt;BR /&gt;&amp;nbsp; (WHILE (&amp;lt; C B)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ D (SSNAME A C)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; E (ENTGET D)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ F (CAR E))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ G (CDR E))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ H (CAR G))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ J (CDR H))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ K "TEXT")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ L "INSERT")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ M "DIMENSION")&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (IF (= J K) (COMMAND ".TEXTEDIT" D)(COMMAND ".DDATTE" D ))&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (TERPRI)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ C (1+ C))&lt;BR /&gt;&amp;nbsp; )&lt;BR /&gt;&amp;nbsp; (PRINC)&lt;BR /&gt;); END ME.LSP&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is the line in red all I need to do?&amp;nbsp; Is this set up to already set variables back to what they were before running the lisp?&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 19:31:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285316#M132702</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-21T19:31:24Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285323#M132703</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;TEXTEDITMODE was the problem.... or so I believe.&lt;/P&gt;
&lt;P&gt;...&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is that a new variable?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Yes, it is...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://knowledge.autodesk.com/support/autocad/learn-explore/caas/CloudHelp/cloudhelp/2017/ENU/AutoCAD-Core/files/GUID-B93A458E-1A7F-4090-A8CF-87A31C24E404-htm.html" target="_blank"&gt;2017 New Commands and System Variables &lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps, &lt;BR /&gt;Henrique&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 19:31:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285323#M132703</guid>
      <dc:creator>hmsilva</dc:creator>
      <dc:date>2016-04-21T19:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285365#M132704</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;....&amp;nbsp;can someone please help me with how to add to the lsp to set that variable to 1 before running it and then setting it back to 0 after the user is done?&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;P&gt;Is the line in red all I need to do?&amp;nbsp; Is this set up to already set variables back to what they were before running the lisp?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The usual way would be something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(defun C:ME (/ &lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;tem&lt;/FONT&gt;&lt;/STRONG&gt; A B C D E F G H J K L M )&lt;BR /&gt;&amp;nbsp; (graphscr)&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;&amp;nbsp; (setq tem (getvar 'texteditmode))&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;FONT color="#ff0000"&gt;(setvar "TEXTEDITMODE" 1)&lt;/FONT&gt;&lt;BR /&gt;&amp;nbsp; (setvar "BLIPMODE" 0)&lt;BR /&gt;....&amp;nbsp; ....&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ C (1+ C))&lt;BR /&gt;&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;&amp;nbsp; (setvar 'texteditmode tem)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; (PRINC)&lt;BR /&gt;); END ME.LSP&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Call the variable anything you like.&amp;nbsp; A good error handler can also ensure that it will be reset even if there is some error.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BUT it occurs to me -- will the routine be used on some 2017 stations and some with earlier versions?&amp;nbsp; That would be a problem if you do only the above, because there will be an error trying to reset it in older versions.&amp;nbsp; You &lt;EM&gt;could&lt;/EM&gt; do something that checks the AutoCAD version first, but since, in a version that does not have that System Variable, "getting" it will just return nil, you could simply make it depend on that:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(defun C:ME (/ &lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;tem&lt;/FONT&gt;&lt;/STRONG&gt; A B C D E F G H J K L M )&lt;BR /&gt;&amp;nbsp; (graphscr)&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;&amp;nbsp; (if (setq tem (getvar 'texteditmode))&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;FONT color="#ff0000"&gt;(setvar "TEXTEDITMODE" 1)&lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;BR /&gt;&amp;nbsp; (setvar "BLIPMODE" 0)&lt;BR /&gt;....&amp;nbsp; ....&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (SETQ C (1+ C))&lt;BR /&gt;&amp;nbsp; )&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#0000ff"&gt;&amp;nbsp; (if tem (setvar 'texteditmode tem))&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp; (PRINC)&lt;BR /&gt;); END ME.LSP&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 19:48:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285365#M132704</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2016-04-21T19:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285387#M132705</link>
      <description>&lt;P&gt;Right now, I am testing out 2017 with our highly customized AutoCAD, so, yes, 2016 would be using it for at least the next couple of weeks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much!!&lt;/P&gt;</description>
      <pubDate>Thu, 21 Apr 2016 19:51:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/6285387#M132705</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-04-21T19:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/7983536#M132706</link>
      <description>&lt;P&gt;So after all the changes, do we have a working lisp file that I can just load up?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 07 May 2018 01:50:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/7983536#M132706</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-07T01:50:48Z</dc:date>
    </item>
    <item>
      <title>Re: Editing multiple single-line text entities.... again!</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/7983544#M132707</link>
      <description>&lt;P&gt;This was the error for me. Changing this variable worked a treat. Thanks so much&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymouswrote:&lt;BR /&gt;&lt;P&gt;TEXTEDITMODE was the problem.... or so I believe.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It was initially set to 0 (&lt;SPAN style="color: #333333; font-family: FrutigerNext, Arial, Helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 17.5px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #eeeeee; display: inline !important; float: none;"&gt;Sets the TEXTEDIT command to repeat automatically&lt;/SPAN&gt;).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I set it to 1 (&lt;SPAN style="color: #333333; font-family: FrutigerNext, Arial, Helvetica, sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: 17.5px; orphans: auto; text-align: left; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: #ffffff; display: inline !important; float: none;"&gt;Sets the TEXTEDIT command to edit a single text object&lt;/SPAN&gt;) and now the lsp works as it was originally.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is that a new variable?&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 May 2018 01:57:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/editing-multiple-single-line-text-entities-again/m-p/7983544#M132707</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-07T01:57:07Z</dc:date>
    </item>
  </channel>
</rss>

