<?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: MTEXT - Remove forced color on hundreds of mtext objects easly ? in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254617#M5501</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14775931"&gt;@jreidKVSUZ&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I found a lisp from another AutoDesk forum user.&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;[Your link seems to be to a different unrelated Topic.]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That looks like it also works only at the object-color-override level.&amp;nbsp; We still need to hear from &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1657496"&gt;@cyberflow&lt;/a&gt;&amp;nbsp;whether that's the situation, or there's internal color-override formatting at the content level.&lt;/P&gt;</description>
    <pubDate>Fri, 10 Jan 2025 20:43:47 GMT</pubDate>
    <dc:creator>Kent1Cooper</dc:creator>
    <dc:date>2025-01-10T20:43:47Z</dc:date>
    <item>
      <title>MTEXT - Remove forced color on hundreds of mtext objects easly ?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254264#M5494</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I've got 600 mtext object that are forced into red.&lt;BR /&gt;I know i can clear all formating, but i'd like to change the color for "by layer"&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Is there a way to do this task easly ?&lt;BR /&gt;With a lisp maybe ?&lt;BR /&gt;&lt;BR /&gt;Been googling for this one all morning, and i know there's a way but it's been ages i havent done this.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 17:02:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254264#M5494</guid>
      <dc:creator>cyberflow</dc:creator>
      <dc:date>2025-01-10T17:02:57Z</dc:date>
    </item>
    <item>
      <title>Betreff: MTEXT - Remove forced color on hundreds of mtext objects easly ?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254274#M5495</link>
      <description>&lt;P&gt;Search for STRIPMTEXT&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 17:07:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254274#M5495</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2025-01-10T17:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: MTEXT - Remove forced color on hundreds of mtext objects easly ?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254283#M5496</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;Try the following lisp code that may help.&lt;/P&gt;
&lt;P&gt;Run the command SetMTextByLayer &amp;nbsp;to apply the changes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(defun c:SetMTextByLayer (/ obj ss i)&lt;BR /&gt;(setq ss (ssget "X" '((0 . "MTEXT")))) ; Select all MTEXT objects in the drawing&lt;BR /&gt;(if ss&lt;BR /&gt;(progn&lt;BR /&gt;(setq i 0)&lt;BR /&gt;(while (&amp;lt; i (sslength ss))&lt;BR /&gt;(setq obj (vlax-ename-&amp;gt;vla-object (ssname ss i)))&lt;BR /&gt;(vla-put-color obj acByLayer) ; Set the color to "ByLayer"&lt;BR /&gt;(setq i (1+ i))&lt;BR /&gt;)&lt;BR /&gt;(princ "\nAll MTEXT objects have been updated to 'ByLayer' color.")&lt;BR /&gt;)&lt;BR /&gt;(princ "\nNo MTEXT objects found in the drawing.")&lt;BR /&gt;)&lt;BR /&gt;(princ)&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 17:12:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254283#M5496</guid>
      <dc:creator>imadHabash</dc:creator>
      <dc:date>2025-01-10T17:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: MTEXT - Remove forced color on hundreds of mtext objects easly ?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254485#M5497</link>
      <description>&lt;P&gt;share a sample dwg with these mtext objects&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 19:25:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254485#M5497</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2025-01-10T19:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: MTEXT - Remove forced color on hundreds of mtext objects easly ?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254499#M5498</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1657496"&gt;@cyberflow&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I've got 600 mtext object that are forced into red. ....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Does that mean they have red as a color override on the Mtext objects at the object level, or that there is internal color override formatting making the contents red?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the former, that's what &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/508410"&gt;@imadHabash&lt;/a&gt;'s routine in Message 3 would fix, one object at a time, but that's fixable collectively in the Properties palette, with no code required.&amp;nbsp; Since I would hope you already know that, I assume the latter, in which case STRIPMTEXT is a good place to start.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 19:35:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254499#M5498</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2025-01-10T19:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: MTEXT - Remove forced color on hundreds of mtext objects easly ?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254544#M5499</link>
      <description>&lt;P&gt;I am unable to get your lisp to work??&amp;nbsp; &amp;nbsp;Can you re-try?&lt;/P&gt;&lt;P&gt;I put it into a file.&lt;/P&gt;&lt;P&gt;Thanks, JRR!&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 19:57:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254544#M5499</guid>
      <dc:creator>jreidKVSUZ</dc:creator>
      <dc:date>2025-01-10T19:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: MTEXT - Remove forced color on hundreds of mtext objects easly ?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254587#M5500</link>
      <description>&lt;P&gt;I found a lisp from another AutoDesk forum user.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The only thing I changed was the LISP name to shorten the file name and command.&lt;/P&gt;&lt;P&gt;The only catch is this only does one color at a time. So, select all of your MTEXT and hit enter. Then put in the existing color of your MTEXT let’s say red which is color 1. Then for new color put 256.&amp;nbsp; Those MTEXT with color 1 is now set to BYLAYER. Do that with all your other colors. Seems like a long process but was shorter than having to redo them all individually.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have attached the MT2BL.lsp file and the original creator.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Original Post Updated:&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/mtext-replace-color-from-a-true-color-value-to-another-value/td-p/9502469" target="_blank"&gt;https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/mtext-replace-color-from-a-true-color-value-to-another-value/td-p/9502469&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;JRR!&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 20:57:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254587#M5500</guid>
      <dc:creator>jreidKVSUZ</dc:creator>
      <dc:date>2025-01-10T20:57:21Z</dc:date>
    </item>
    <item>
      <title>Re: MTEXT - Remove forced color on hundreds of mtext objects easly ?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254617#M5501</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/14775931"&gt;@jreidKVSUZ&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;I found a lisp from another AutoDesk forum user.&lt;/P&gt;
&lt;P&gt;....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;[Your link seems to be to a different unrelated Topic.]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That looks like it also works only at the object-color-override level.&amp;nbsp; We still need to hear from &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1657496"&gt;@cyberflow&lt;/a&gt;&amp;nbsp;whether that's the situation, or there's internal color-override formatting at the content level.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2025 20:43:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254617#M5501</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2025-01-10T20:43:47Z</dc:date>
    </item>
    <item>
      <title>Re: MTEXT - Remove forced color on hundreds of mtext objects easly ?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254642#M5502</link>
      <description>I have updated the original creator's link.&lt;BR /&gt;I have no idea how that happened but great catch.&lt;BR /&gt;Thanks, JRR!</description>
      <pubDate>Fri, 10 Jan 2025 20:58:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13254642#M5502</guid>
      <dc:creator>jreidKVSUZ</dc:creator>
      <dc:date>2025-01-10T20:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: MTEXT - Remove forced color on hundreds of mtext objects easly ?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13258268#M5503</link>
      <description>&lt;P&gt;Thank you all for tackling down this issue i was having !&lt;BR /&gt;&lt;BR /&gt;Really appreciate the help ! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2025 18:27:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/mtext-remove-forced-color-on-hundreds-of-mtext-objects-easly/m-p/13258268#M5503</guid>
      <dc:creator>cyberflow</dc:creator>
      <dc:date>2025-01-13T18:27:53Z</dc:date>
    </item>
  </channel>
</rss>

