<?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: Lisp TXT to ATT (help to modify) in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367600#M115284</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3870986"&gt;@Edwin.Saez.Jamanca&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;THANKS FOR ANSWERING,&lt;BR /&gt;WHAT HAPPENS IS THAT I HAVE 100 DIFFERENT BLOCKS HAVING&lt;FONT color="#0000FF"&gt; TEXTS WITHIN THE BLOCK&lt;/FONT&gt;, AND THAT I WANT THAT TEXTS TO BE ATTRIBUTED, NOT TO ENTER INTO EVERY BLOCK AND CREATE A NEW ATTRIBUTE.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Wow. Deja Vu and All caps at that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TEXTS - plural , each one will be converted to multiline attribtue or combined all text ito one multiline attribute?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you post a sample block?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 10 Sep 2017 06:05:34 GMT</pubDate>
    <dc:creator>pbejse</dc:creator>
    <dc:date>2017-09-10T06:05:34Z</dc:date>
    <item>
      <title>Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7365686#M115281</link>
      <description>&lt;P&gt;hi everyone!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I found the following Lee Mac routine, and I need you to help me modify it.&lt;BR /&gt;lisp converts the text to attributes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- I need them to be able to convert texts that are inside the block, without having to enter the block.&lt;BR /&gt;- when they are already converted, they are assigned the default property "Multiples Lines".&lt;BR /&gt;- The default text of the ATT, should not have "_" between texts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the help&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;;; Txt2Att  ( Lee Mac )
;; Converts Single-line Text to Attribute Definition

(defun c:txt2att ( / StringSubst RemovePairs ss ent eLst str dx73 )
  (vl-load-com)
  ;; Lee Mac  ~  27.04.10

  (defun StringSubst ( new pat str )
    (while (vl-string-search pat str)
      (setq str (vl-string-subst new pat str))
    )
    str
  )

  (defun RemovePairs ( lst pairs )
    (vl-remove-if
      (function
        (lambda ( pair )
          (vl-position (car pair) pairs)
        )
      )
      lst
    )
  )

  (if (setq ss (ssget "_:L" '((0 . "TEXT"))))
    
    ( (lambda ( i )
        
        (while (setq ent (ssname ss (setq i (1+ i))))
          (setq eLst (entget ent)
                str  (StringSubst "_" " " (cdr (assoc 1 eLst)))
                dx73 (cdr (assoc 73 eLst)))

          (setq eLst (RemovePairs eLst '( 0 100 1 73 )))

          (if (entmake (append '( (0 . "ATTDEF") ) eLst (list (cons 70    0)
                                                              (cons 74 dx73)
                                                              (cons 1   str)
                                                              (cons 2   str)
                                                              (cons 3   str))))
            (entdel ent)
          )
        )
      )
      -1
    )
  )

  (princ))&lt;/PRE&gt;</description>
      <pubDate>Fri, 08 Sep 2017 18:29:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7365686#M115281</guid>
      <dc:creator>Edwin.Saez</dc:creator>
      <dc:date>2017-09-08T18:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367060#M115282</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3870986"&gt;@Edwin.Saez.Jamanca&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;hi everyone!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I found the following Lee Mac routine, and I need you to help me modify it.&lt;BR /&gt;lisp converts the text to attributes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- I need them to be able to convert texts that are inside the block, without having to enter the block.&lt;BR /&gt;- when they are already converted, they are assigned the default property "Multiples Lines".&lt;BR /&gt;- &lt;FONT color="#0000FF"&gt;The default text of the ATT, should not have "_" between texts.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the helP&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Easier to REDEFINE a block&amp;nbsp;&lt;SPAN&gt;Edwin.&amp;nbsp;&lt;/SPAN&gt;Once you modify one of the instances of the block the rest will follow. Have the UPDATED block at the ready, include the block onto your Tool palette and you're done.&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="redefine.png" style="width: 203px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/399575i1B9FAB971E76654B/image-dimensions/203x222?v=v2" width="203" height="222" role="button" title="redefine.png" alt="redefine.png" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;- Not sure what that means&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- off topic -&lt;/P&gt;
&lt;P&gt;I remember a month or so ago, I was blasted by giving the same suggestion&amp;nbsp;&lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 09 Sep 2017 16:33:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367060#M115282</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2017-09-09T16:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367102#M115283</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;THANKS FOR ANSWERING,&lt;BR /&gt;WHAT HAPPENS IS THAT I HAVE 100 DIFFERENT BLOCKS HAVING TEXTS WITHIN THE BLOCK, AND THAT I WANT THAT TEXTS TO BE ATTRIBUTED, NOT TO ENTER INTO EVERY BLOCK AND CREATE A NEW ATTRIBUTE.&lt;/P&gt;</description>
      <pubDate>Sat, 09 Sep 2017 17:47:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367102#M115283</guid>
      <dc:creator>Edwin.Saez</dc:creator>
      <dc:date>2017-09-09T17:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367600#M115284</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3870986"&gt;@Edwin.Saez.Jamanca&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;THANKS FOR ANSWERING,&lt;BR /&gt;WHAT HAPPENS IS THAT I HAVE 100 DIFFERENT BLOCKS HAVING&lt;FONT color="#0000FF"&gt; TEXTS WITHIN THE BLOCK&lt;/FONT&gt;, AND THAT I WANT THAT TEXTS TO BE ATTRIBUTED, NOT TO ENTER INTO EVERY BLOCK AND CREATE A NEW ATTRIBUTE.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Wow. Deja Vu and All caps at that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TEXTS - plural , each one will be converted to multiline attribtue or combined all text ito one multiline attribute?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you post a sample block?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Sep 2017 06:05:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367600#M115284</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2017-09-10T06:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367639#M115285</link>
      <description>&lt;P&gt;I attached a dwg example of the blocks.&lt;/P&gt;
&lt;P&gt;there are 2 types of blocks:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- blocks that have single line text (text)&lt;BR /&gt;- blocks that have multi-line text (Mtext)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;lisp should work for both options.&lt;BR /&gt;similar to the lisp of lee mac, but without having to enter the block editor, and that convert to attribute the texts.&lt;BR /&gt;in the case of texts of several lines (Mtext) must combine all the Mtext, in one multiline attribute.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the help&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;.&lt;/P&gt;</description>
      <pubDate>Sun, 10 Sep 2017 07:20:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367639#M115285</guid>
      <dc:creator>Edwin.Saez</dc:creator>
      <dc:date>2017-09-10T07:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367647#M115286</link>
      <description>&lt;P&gt;Both strings on blocks are MTEXT.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Are you saying if the MTEXT is just one line convert it to an attribute and more than one then convert it to a MultiLine attribute?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Or convert MTEXT to multiline attribute regardless? and if it's a TEXT entity just a regular attribute?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What you need to show is a BEFORE and&amp;nbsp;AFTER so there would be no confusion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Sep 2017 07:57:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367647#M115286</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2017-09-10T07:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367661#M115287</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;STRONG&gt;pbejse escribió:&lt;/STRONG&gt;&lt;BR /&gt;
&lt;P&gt;&lt;STRONG&gt;Both strings on blocks are MTEXT.&lt;/STRONG&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;EM&gt;if I know, but lisp should work for text and Mtext, since other blocks are with text&lt;/EM&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Are you saying if the MTEXT is just one line convert it to an attribute and more than one then convert it to a MultiLine attribute?&lt;/STRONG&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;EM&gt;if, the text make it an attribute.&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;mtext that is also a single attribute. Only the content of the mtext is in separate line; this should be a single attribute.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Sep 2017 08:01:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367661#M115287</guid>
      <dc:creator>Edwin.Saez</dc:creator>
      <dc:date>2017-09-10T08:01:48Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367665#M115288</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Attached dwg, with the blocks as they are now, and how they should be.&lt;/P&gt;</description>
      <pubDate>Sun, 10 Sep 2017 08:10:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367665#M115288</guid>
      <dc:creator>Edwin.Saez</dc:creator>
      <dc:date>2017-09-10T08:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367681#M115289</link>
      <description>&lt;P&gt;Ok, before I begin, The blocks to be processed have only one item of either a MTEXT or a TEXT? There are no blocks that have multiple text/mtext entity, and by that, I mean more than one text/mtext object not string&amp;nbsp;lines. Correct?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Sep 2017 08:48:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367681#M115289</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2017-09-10T08:48:49Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367770#M115290</link>
      <description>i cannot think of any native autocad solutions.
you can redefine the block, but getting the new attribute to absorb the existing text value may not be possible.
the lisp routine might work if blocks are exploded, if you can live without the blocks</description>
      <pubDate>Sun, 10 Sep 2017 10:58:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367770#M115290</guid>
      <dc:creator>jackshield</dc:creator>
      <dc:date>2017-09-10T10:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367893#M115291</link>
      <description>&lt;P&gt;Command: &lt;STRONG&gt;TXT2MATT&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTH&lt;/P&gt;</description>
      <pubDate>Sun, 10 Sep 2017 14:00:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7367893#M115291</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2017-09-10T14:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7368926#M115292</link>
      <description>&lt;P&gt;Patrick,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It works very well.&lt;/P&gt;
&lt;P&gt;the only thing I want you to add is that all attributes have the property of multiple lines.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 07:14:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7368926#M115292</guid>
      <dc:creator>Edwin.Saez</dc:creator>
      <dc:date>2017-09-11T07:14:46Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7370574#M115293</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3870986"&gt;@Edwin.Saez.Jamanca&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Patrick,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It works very well.&lt;/P&gt;
&lt;P&gt;the only thing I want you to add is that all attributes have the property of multiple lines.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Thought you wanted single attributes for single lines.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try the quick mod [ txtAll2Matt.lsp&amp;nbsp;]&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;HTH&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 16:34:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7370574#M115293</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2017-09-11T16:34:31Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7370848#M115294</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is perfect for me&lt;BR /&gt;a question, could the boundary width "0" the attribute?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks always for the help!&lt;/P&gt;
&lt;P&gt;you are a crack&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 18:03:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7370848#M115294</guid>
      <dc:creator>Edwin.Saez</dc:creator>
      <dc:date>2017-09-11T18:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7370911#M115295</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3870986"&gt;@Edwin.Saez.Jamanca&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;is perfect for me&lt;BR /&gt;&lt;FONT color="#0000FF"&gt;a question, could the boundary width "0" the attribute?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks always for the help!&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008000"&gt;you are a crack&amp;nbsp;&lt;/FONT&gt;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;Yes, just get rid of this line&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;....&lt;BR /&gt;(vla-put-MTextBoundaryWidth NewMultilineAttribute (vlax-get (Cdr f) 'width))&lt;BR /&gt;...&lt;/PRE&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;BUT more coding would be needed to add the //P per line based on the existing STRING content.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#008000"&gt;Not sure if that's a good thing&amp;nbsp;&lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;We'll continue tomorrow edwin,&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#000000"&gt;Cheers&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 11 Sep 2017 18:20:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7370911#M115295</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2017-09-11T18:20:43Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7373624#M115296</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0000FF"&gt;BUT more coding would be needed to add the //P per line based on the existing STRING content.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;This is what I need...&lt;img id="smileyembarrassed" class="emoticon emoticon-smileyembarrassed" src="https://forums.autodesk.com/i/smilies/16x16_smiley-embarrassed.png" alt="Smiley Embarassed" title="Smiley Embarassed" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks Patrick!&amp;nbsp;you are a genious!!&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2017 15:02:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7373624#M115296</guid>
      <dc:creator>Edwin.Saez</dc:creator>
      <dc:date>2017-09-12T15:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7374289#M115297</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3870986"&gt;@Edwin.Saez.Jamanca&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;&amp;nbsp;BUT more coding would be needed to add the //P per line based on the existing STRING content.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is what I need...&lt;img id="smileyembarrassed" class="emoticon emoticon-smileyembarrassed" src="https://forums.autodesk.com/i/smilies/16x16_smiley-embarrassed.png" alt="Smiley Embarassed" title="Smiley Embarassed" /&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Not a big fan of "//P" myself. so I'm not really in agreement with your request there&amp;nbsp;edwin. I think you're better off with the mtext width as it was before it was converted to Multiline Attribute.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But really that's just me stalling.&amp;nbsp;&lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2017 18:15:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7374289#M115297</guid>
      <dc:creator>pbejse</dc:creator>
      <dc:date>2017-09-12T18:15:48Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7374394#M115298</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/564264"&gt;@pbejse&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks for answering patrick.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;what happens is that I do not like to see the attribute grips when it has a width width other than 0. That's why I wanted the value to be kept at 0, and depending on the content of the existing text, you can do a line break , just as you mentioned it.&amp;nbsp;&lt;img id="smileyfrustrated" class="emoticon emoticon-smileyfrustrated" src="https://forums.autodesk.com/i/smilies/16x16_smiley-frustrated.png" alt="Smiley Frustrated" title="Smiley Frustrated" /&gt;&lt;/P&gt;
&lt;P&gt;Anyway, I appreciate your help. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2017 18:53:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7374394#M115298</guid>
      <dc:creator>Edwin.Saez</dc:creator>
      <dc:date>2017-09-12T18:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: Lisp TXT to ATT (help to modify)</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7374479#M115299</link>
      <description>Did this resolve the issue of retaining the text value defined in block?</description>
      <pubDate>Tue, 12 Sep 2017 19:33:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/lisp-txt-to-att-help-to-modify/m-p/7374479#M115299</guid>
      <dc:creator>jackshield</dc:creator>
      <dc:date>2017-09-12T19:33:16Z</dc:date>
    </item>
  </channel>
</rss>

