<?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) : text below the dim line</title>
  <link>https://www.cadforum.cz/forum_en/</link>
  <description><![CDATA[This is an XML content feed of; CAD Forum discussion (EN) : AutoCAD : text below the dim line]]></description>
  <pubDate>Sun, 17 May 2026 04:01:56 +0000</pubDate>
  <lastBuildDate>Tue, 19 Nov 2013 20:39:51 +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=9819</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[text below the dim line :  I got it...I found another routine....]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=9819&amp;PID=25210&amp;title=text-below-the-dim-line#25210</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=422711">JohnH79</a><br /><strong>Subject:</strong> 9819<br /><strong>Posted:</strong> 19.Nov.2013 at 20:39<br /><br />I got it...I found another routine.&nbsp; been searching for weeks and finally found one.]]>
   </description>
   <pubDate>Tue, 19 Nov 2013 20:39:51 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=9819&amp;PID=25210&amp;title=text-below-the-dim-line#25210</guid>
  </item> 
  <item>
   <title><![CDATA[text below the dim line :  HERE IS THE LISP ROUTINE THAT...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=9819&amp;PID=25209&amp;title=text-below-the-dim-line#25209</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=422711">JohnH79</a><br /><strong>Subject:</strong> 9819<br /><strong>Posted:</strong> 19.Nov.2013 at 20:06<br /><br /><div>HERE IS THE LISP ROUTINE THAT I FOUND ON ANOTHER CAD FORUM.&nbsp; </div><p>&nbsp;</p><p>(defun c:DTOR () (c:DimTextOverride))<br>(defun c:DimTextOverride ( / ss textString)<br>(princ "\rDIMENSION TEXT OVERRIDE ")<br>(vl-load-com)<br>(if (and (setq ss (ssget '((0 . "DIMENSION"))))<br>(setq textString<br>(getstring<br>T<br>"\nEnter override text, &lt;Enter&gt; to remove override: ")))<br>(progn<br>(vla-startundomark<br>(cond (*activeDoc*)<br>((setq *activeDoc*<br>(vla-get-activedocument<br>(vlax-get-acad-object))))))<br>(vlax-for oDim<br>(setq ss (vla-get-activeselectionset *activeDoc*))<br>(vla-put-textoverride oDim textString))<br>(vla-delete ss)<br>(vla-endundomark *activeDoc*))<br>(prompt "\n** Nothing selected ** "))<br>(princ))</p><div>it works exactly what I want it to do.&nbsp; I select the dimension line and then manually type in "&lt;&gt;\XEFS" and it gives me EXACTLY what Im looking for.&nbsp; I am trying to improve it by having it add that text by itself.&nbsp; I tried combine both this LISP routine with a button but the darn backslash is getting in the way.&nbsp; I tried to add&nbsp; "&lt;&gt;\XEFS" to the lips routine but it just isn't seeing it.&nbsp; The biggest issue is that I have never written LISP routines before, so it looks French to me..I understand some of it but not all of it..LOL</div>]]>
   </description>
   <pubDate>Tue, 19 Nov 2013 20:06:28 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=9819&amp;PID=25209&amp;title=text-below-the-dim-line#25209</guid>
  </item> 
  <item>
   <title><![CDATA[text below the dim line : You can have AutoLISP expressions...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=9819&amp;PID=25208&amp;title=text-below-the-dim-line#25208</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=353260">Kent Cooper</a><br /><strong>Subject:</strong> 9819<br /><strong>Posted:</strong> 19.Nov.2013 at 19:41<br /><br /><P>You can have AutoLISP expressions in macros.&nbsp; I haven't tried this, but maybe you could embed the backslash inside a (strcat) function even if you're <EM>not</EM> concatenating more than one string together, just to get it inside a stretch of code that will be interpreted by Lisp, which should prevent the macro interpreter from reading it as a pause.&nbsp; &#091;I believe it would need to be represented by a <EM>double</EM> backslash.&#093;</P><DIV></DIV>(strcat "&lt;&gt;\\XEFS")]]>
   </description>
   <pubDate>Tue, 19 Nov 2013 19:41:30 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=9819&amp;PID=25208&amp;title=text-below-the-dim-line#25208</guid>
  </item> 
  <item>
   <title><![CDATA[text below the dim line :  I tried that before and it didn&amp;#039;t...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=9819&amp;PID=25207&amp;title=text-below-the-dim-line#25207</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=422711">JohnH79</a><br /><strong>Subject:</strong> 9819<br /><strong>Posted:</strong> 19.Nov.2013 at 19:07<br /><br />I tried that before and it didn't work.&nbsp; I just did it now, it just shows exactly what I have typed "/XEFS"&nbsp; I have also tried "&lt;&gt;\\XEFS"&nbsp; double backslash...but that just then waits for two user inputs.&nbsp; I even tried putting in a space after "&lt;&gt; EFS" but then I get an error from CAD "unknown command:EFS"<div>&nbsp;</div><div>I really am at a loss.&nbsp; The biggest issue is the backslash...if I can get around the backslash that will work or if I can get CAD to take \X as a whole command rather than seeing \ then X, that would really fix my problem</div>]]>
   </description>
   <pubDate>Tue, 19 Nov 2013 19:07:14 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=9819&amp;PID=25207&amp;title=text-below-the-dim-line#25207</guid>
  </item> 
  <item>
   <title><![CDATA[text below the dim line : Have you tried reversing the slash?...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=9819&amp;PID=25206&amp;title=text-below-the-dim-line#25206</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> 9819<br /><strong>Posted:</strong> 19.Nov.2013 at 18:42<br /><br />Have you tried reversing the slash?<br>]]>
   </description>
   <pubDate>Tue, 19 Nov 2013 18:42:22 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=9819&amp;PID=25206&amp;title=text-below-the-dim-line#25206</guid>
  </item> 
  <item>
   <title><![CDATA[text below the dim line : I know how to add text below the...]]></title>
   <link>https://www.cadforum.cz/forum_en/forum_posts.asp?TID=9819&amp;PID=25204&amp;title=text-below-the-dim-line#25204</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="https://www.cadforum.cz/forum_en/member_profile.asp?PF=422711">JohnH79</a><br /><strong>Subject:</strong> 9819<br /><strong>Posted:</strong> 19.Nov.2013 at 16:02<br /><br /><p>I know how to add text below the dim line the manual way.&nbsp; However, I am trying to put it into a toolbar button.</p><div></div>When I put the command (\X) into my button settings, CAD is reading the backslash first (\), which is the command "wait for users input" and it wont go any further.<div>&nbsp;</div><div>Hopefully this makes sense.&nbsp; Can anyone help me?</div><div>&nbsp;</div><div>John</div>]]>
   </description>
   <pubDate>Tue, 19 Nov 2013 16:02:35 +0000</pubDate>
   <guid isPermaLink="true">https://www.cadforum.cz/forum_en/forum_posts.asp?TID=9819&amp;PID=25204&amp;title=text-below-the-dim-line#25204</guid>
  </item> 
 </channel>
</rss>