<?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: Disable Text Rotation in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/disable-text-rotation/m-p/12282646#M27829</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/304888"&gt;@nrz13&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;I assume you're using the TEXT command rather than MTEXT ("T" shortcut) ....&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;.... you can create a custom .lisp like this:&lt;BR /&gt;&lt;EM&gt;(defun c:T ()(command "TEXT" PAUSE "" "")(princ))&lt;/EM&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;[T is the &lt;EM&gt;default&lt;/EM&gt; command alias for Mtext, but they might have changed that to be for plain Text, in place of the TE default alias for that.]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bear in mind that such a custom command would need to take into account, or you would need separate command definitions for, the difference between a Style with a &lt;EM&gt;fixed height&lt;/EM&gt; and one without.&amp;nbsp; &lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;EDIT:&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp; And it leaves you without the possibility of invoking the Justify or Style options -- you could call for one of those at the PAUSE point, but then it won't like multiple Enters "" as a response to its prompt.&amp;nbsp; To be able to use those options, you would need to type out TEXT for the native command or TE for the alias, rather than use the T custom command.&amp;nbsp; And that command name leaves Mtext in the lurch, if this takes over its T alias, so you might want to assign a different alias for it, or use its full name when that's what you want.&lt;/P&gt;</description>
    <pubDate>Tue, 03 Oct 2023 19:08:28 GMT</pubDate>
    <dc:creator>Kent1Cooper</dc:creator>
    <dc:date>2023-10-03T19:08:28Z</dc:date>
    <item>
      <title>Disable Text Rotation</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/disable-text-rotation/m-p/12282465#M27826</link>
      <description>&lt;P&gt;Whenever I am in CAD and going to type out some text using the 'text' or 't' function, it always asks me for the rotation angle of the text, which I set to 0. Is there a way to disable/bypass that prompt so it never asks me what angle I want my text rotated? Given what I do in CAD, my text never needs to be rotated or read at any angle other than how English writing is traditionally read which is with no rotation and left to right. It always asks me and sometimes when I'm clicking fast it will sometimes set the rotation to 90 or some other angle without me noticing, obviously I can just click slower and be more precise but it would be nice just to never be prompted and not have to think about it.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2023 17:39:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/disable-text-rotation/m-p/12282465#M27826</guid>
      <dc:creator>williamVC9FC</dc:creator>
      <dc:date>2023-10-03T17:39:16Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Text Rotation</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/disable-text-rotation/m-p/12282503#M27827</link>
      <description>&lt;P&gt;I assume you're using the TEXT command rather than MTEXT ("T" shortcut), as MTEXT doesn't ask for the rotation.&amp;nbsp; For TEXT, you can just hit enter/spacebar/right-click (assuming your right-click is set to this) to quickly go through the rest of the prompts.&lt;BR /&gt;&lt;BR /&gt;If that doesn't work for you, you can create a custom .lisp like this:&lt;BR /&gt;&lt;EM&gt;(defun c:T ()(command "TEXT" PAUSE "" "")(princ))&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2023 18:02:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/disable-text-rotation/m-p/12282503#M27827</guid>
      <dc:creator>nrz13</dc:creator>
      <dc:date>2023-10-03T18:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Text Rotation</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/disable-text-rotation/m-p/12282513#M27828</link>
      <description>Customize with LISP (if you prefer to type) or edit that button's macro to answer yes all of the time to avoid the question (well, you'd just always answer t as yes). Nothing core to the program switches that off unless you also just get in the habit of tapping&amp;lt;enter&amp;gt; an extra time as needed to get beyond the question asked.&lt;BR /&gt;&lt;BR /&gt;How would you like to proceed?</description>
      <pubDate>Tue, 03 Oct 2023 18:08:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/disable-text-rotation/m-p/12282513#M27828</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2023-10-03T18:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Text Rotation</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/disable-text-rotation/m-p/12282646#M27829</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/304888"&gt;@nrz13&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&lt;SPAN&gt;I assume you're using the TEXT command rather than MTEXT ("T" shortcut) ....&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;.... you can create a custom .lisp like this:&lt;BR /&gt;&lt;EM&gt;(defun c:T ()(command "TEXT" PAUSE "" "")(princ))&lt;/EM&gt;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;[T is the &lt;EM&gt;default&lt;/EM&gt; command alias for Mtext, but they might have changed that to be for plain Text, in place of the TE default alias for that.]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bear in mind that such a custom command would need to take into account, or you would need separate command definitions for, the difference between a Style with a &lt;EM&gt;fixed height&lt;/EM&gt; and one without.&amp;nbsp; &lt;FONT color="#FF6600"&gt;&lt;STRONG&gt;EDIT:&lt;/STRONG&gt;&lt;/FONT&gt;&amp;nbsp; And it leaves you without the possibility of invoking the Justify or Style options -- you could call for one of those at the PAUSE point, but then it won't like multiple Enters "" as a response to its prompt.&amp;nbsp; To be able to use those options, you would need to type out TEXT for the native command or TE for the alias, rather than use the T custom command.&amp;nbsp; And that command name leaves Mtext in the lurch, if this takes over its T alias, so you might want to assign a different alias for it, or use its full name when that's what you want.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2023 19:08:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/disable-text-rotation/m-p/12282646#M27829</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2023-10-03T19:08:28Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Text Rotation</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/disable-text-rotation/m-p/12282648#M27830</link>
      <description>&lt;P&gt;Yes, or pause to input height if not consistent.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2023 18:57:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/disable-text-rotation/m-p/12282648#M27830</guid>
      <dc:creator>nrz13</dc:creator>
      <dc:date>2023-10-03T18:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Disable Text Rotation</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/disable-text-rotation/m-p/12285830#M27831</link>
      <description>&lt;P&gt;Maybe this will help. But I set my mtext system variable in the command line &lt;STRONG&gt;MTEXTFIXED&lt;/STRONG&gt;&amp;nbsp; to &amp;lt;&lt;STRONG&gt;0&lt;/STRONG&gt;&amp;gt; zero&lt;/P&gt;</description>
      <pubDate>Thu, 05 Oct 2023 03:49:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/disable-text-rotation/m-p/12285830#M27831</guid>
      <dc:creator>gbattinPH5TG</dc:creator>
      <dc:date>2023-10-05T03:49:29Z</dc:date>
    </item>
  </channel>
</rss>

