<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>CAD Forum discussion (EN) : Mtext Width factor</title>
  <link>https://www.cadforum.cz/forum_en/</link>
  <description><![CDATA[This is an XML content feed of; CAD Forum discussion (EN) : AutoCAD : Mtext Width factor]]></description>
  <pubDate>Tue, 21 Apr 2026 14:29:59 +0000</pubDate>
  <lastBuildDate>Tue, 19 Apr 2011 16:13:30 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>https://www.cadforum.cz/forum_en/RSS_post_feed.asp?TID=5718</WebWizForums:feedURL>
  <image>
   <title><![CDATA[CAD Forum discussion (EN)]]></title>
   <url>https://www.cadforum.cz/forum_en/forum_images/web_wiz_forums.png</url>
   <link>https://www.cadforum.cz/forum_en/</link>
  </image>
  <item>
   <title><![CDATA[Mtext Width factor :     John Connor wrote:Nice...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5718&amp;PID=14822&amp;title=mtext-width-factor#14822</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=45586">alanjt</a><br /><strong>Subject:</strong> 5718<br /><strong>Posted:</strong> 19.Apr.2011 at 16:13<br /><br /><table width="99%"><tr><td class="BBquote"><img src="forum_images/quote_box.png" title="Originally posted by John Connor" alt="Originally posted by John Connor" style="vertical-align: text-bottom;" /> <strong>John Connor wrote:</strong><br /><br />Nice routine there Alan.&nbsp; Thanks.</td></tr></table><br>You're welcome. 99% of the time, I just use MText with a zero width, but it comes it handy when I have text from someone else that I want to fix - especially annoying when they have a huge width and background masking turned on.<br><br>Here's a simple macro I use to place MText with an initial prompt of using a zero width or you can right-click/enter once and it will allow you to place text normally.<br><br><table width="99%"><tr><td><pre class="BBcode">; mtext with 0 width<br>(defun c:T (/ pt)<br>&nbsp; (initdia)<br>&nbsp; (command "_.mtext")<br>&nbsp; (if (setq pt (getpoint "\nSpecify insertion point &lt;First corner&gt;: "))<br>&nbsp;&nbsp;&nbsp; (command "_non" pt "_W" 0.)<br>&nbsp; )<br>&nbsp; (princ)<br>)</pre></td></tr></table><br><br>FYI: I keep cmdecho set to 0 at all times, so it probably looks a lot cleaner on my end.<br><br>BTW, where is the option to insert code tags? I have to type them myself.<br><span style="font-size:10px"><br /><br />Edited by alanjt - 19.Apr.2011 at 16:13</span>]]>
   </description>
   <pubDate>Tue, 19 Apr 2011 16:13:30 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5718&amp;PID=14822&amp;title=mtext-width-factor#14822</guid>
  </item> 
  <item>
   <title><![CDATA[Mtext Width factor : Nice routine there Alan. Thanks....]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5718&amp;PID=14821&amp;title=mtext-width-factor#14821</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=165260">John Connor</a><br /><strong>Subject:</strong> 5718<br /><strong>Posted:</strong> 19.Apr.2011 at 16:05<br /><br />Nice routine there Alan.&nbsp; Thanks.]]>
   </description>
   <pubDate>Tue, 19 Apr 2011 16:05:25 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5718&amp;PID=14821&amp;title=mtext-width-factor#14821</guid>
  </item> 
  <item>
   <title><![CDATA[Mtext Width factor : ? (defun c:WD (/ ss wd) ;; Change...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5718&amp;PID=14820&amp;title=mtext-width-factor#14820</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=45586">alanjt</a><br /><strong>Subject:</strong> 5718<br /><strong>Posted:</strong> 19.Apr.2011 at 15:41<br /><br />?<br><br><table width="99%"><tr><td><pre class="BBcode">(defun c:WD (/ ss wd)<br>&nbsp; ;; Change width of selected MText and MultiLeader objects<br>&nbsp; ;; Alan J. Thompson, 11.05.09<br>&nbsp; (vl-load-com)<br>&nbsp; (if (and (setq ss (ssget "_:L" '((0 . "MTEXT,MULTILEADER"))))<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (setq wd (initget 4)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; wd (cond ((getdist "\nWidth &lt;0.0&gt;: "))<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (0.)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<br>&nbsp;&nbsp;&nbsp; (progn<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (vlax-for x (setq ss (vla-get-activeselectionset<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (cond (*AcadDoc*)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ((setq *AcadDoc* (vla-get-activedocument<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (vlax-get-acad-object)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (vl-catch-all-apply<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (function vlax-put-property)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (list x<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (cond ((eq (vla-get-objectname x) "AcDbMText") 'Width)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ((eq (vla-get-objectname x) "AcDbMLeader") 'TextWidth)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; wd<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; )<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (vla-delete ss)<br>&nbsp;&nbsp;&nbsp; )<br>&nbsp; )<br>&nbsp; (princ)<br>)</pre></td></tr></table><br>]]>
   </description>
   <pubDate>Tue, 19 Apr 2011 15:41:05 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5718&amp;PID=14820&amp;title=mtext-width-factor#14820</guid>
  </item> 
  <item>
   <title><![CDATA[Mtext Width factor : Bothof the methods in tip #5773...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5718&amp;PID=14815&amp;title=mtext-width-factor#14815</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=165260">John Connor</a><br /><strong>Subject:</strong> 5718<br /><strong>Posted:</strong> 19.Apr.2011 at 12:38<br /><br />Both&nbsp;of the methods in tip #5773 should have worked.&nbsp; Try again.&nbsp; Use a smaller selection set as a test.]]>
   </description>
   <pubDate>Tue, 19 Apr 2011 12:38:40 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5718&amp;PID=14815&amp;title=mtext-width-factor#14815</guid>
  </item> 
  <item>
   <title><![CDATA[Mtext Width factor : by editingvalue in text formatting...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5718&amp;PID=14813&amp;title=mtext-width-factor#14813</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=162727">Prasanna Achar</a><br /><strong>Subject:</strong> 5718<br /><strong>Posted:</strong> 19.Apr.2011 at 12:12<br /><br />by editing&nbsp;value in text formatting toolbar one by one.. <DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV><DIV>I had gone gone with cad tip #5773. but it does not worked for me..</DIV></DIV><span style="font-size:10px"><br /><br />Edited by Prasanna Achar - 19.Apr.2011 at 12:15</span>]]>
   </description>
   <pubDate>Tue, 19 Apr 2011 12:12:57 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5718&amp;PID=14813&amp;title=mtext-width-factor#14813</guid>
  </item> 
  <item>
   <title><![CDATA[Mtext Width factor : What method are you currently...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5718&amp;PID=14809&amp;title=mtext-width-factor#14809</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=165260">John Connor</a><br /><strong>Subject:</strong> 5718<br /><strong>Posted:</strong> 19.Apr.2011 at 11:57<br /><br /><P>What method are you currently using?</P>]]>
   </description>
   <pubDate>Tue, 19 Apr 2011 11:57:03 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5718&amp;PID=14809&amp;title=mtext-width-factor#14809</guid>
  </item> 
  <item>
   <title><![CDATA[Mtext Width factor : Is it possible to change the multiple...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5718&amp;PID=14807&amp;title=mtext-width-factor#14807</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=162727">Prasanna Achar</a><br /><strong>Subject:</strong> 5718<br /><strong>Posted:</strong> 19.Apr.2011 at 10:52<br /><br /><P>Is it possible to change the multiple mtext width factor&nbsp;in a single command?&nbsp;</P><span style="font-size:10px"><br /><br />Edited by Prasanna Achar - 19.Apr.2011 at 10:59</span>]]>
   </description>
   <pubDate>Tue, 19 Apr 2011 10:52:23 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=5718&amp;PID=14807&amp;title=mtext-width-factor#14807</guid>
  </item> 
 </channel>
</rss>