<?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: On-screen Command and Status Display Overlay in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10499821#M73797</link>
    <description>Are you trying to run a demonstration class? Or some sort of online tutorial?&lt;BR /&gt;&lt;BR /&gt;In the meantime... CTRL+F2 then park that pop-up on a screen away from the drafting area of AutoCAD is as close as you can get in the core program as an option for what you seek.</description>
    <pubDate>Tue, 27 Jul 2021 15:47:35 GMT</pubDate>
    <dc:creator>pendean</dc:creator>
    <dc:date>2021-07-27T15:47:35Z</dc:date>
    <item>
      <title>On-screen Command and Status Display Overlay</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10499562#M73794</link>
      <description>&lt;P&gt;Is there some kind of addon/plugin/LISP for AutoCAD that can do a large scale, semi-transparent overlay display of real-time commands being typed as well as status of Ortho, Snap, etc.?&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 14:30:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10499562#M73794</guid>
      <dc:creator>cadPNYBN</dc:creator>
      <dc:date>2021-07-27T14:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: On-screen Command and Status Display Overlay</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10499632#M73795</link>
      <description>&lt;P&gt;I don't know of any add-on like that (doesn't mean it doesn't exist), but you could achieve the first part of what you're wanting to do by using a floating command line.&amp;nbsp; Just increase the font size to get your larger text (OPTIONS &amp;gt; Display tab &amp;gt; Fonts... button).&amp;nbsp; Reduce the width of the command line as needed to not cover your screen.&lt;BR /&gt;&lt;BR /&gt;For the transparency, select the wrench icon on the command line and set to the desired amount.&amp;nbsp; Ortho/Snap/etc. will also show up in the command line there, but if you want an always-on display of those items, I think you'd have to use the built-in icons on the status bar.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 14:49:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10499632#M73795</guid>
      <dc:creator>nrz13</dc:creator>
      <dc:date>2021-07-27T14:49:50Z</dc:date>
    </item>
    <item>
      <title>Re: On-screen Command and Status Display Overlay</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10499711#M73796</link>
      <description>&lt;P&gt;Not exactly what you want, but in maybe it can be helpful in part:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can have the Snap value displayed only when Snap is on, in the status line, with a MODEMACRO setting.&amp;nbsp; Make an &lt;STRONG&gt;&lt;FONT face="courier new,courier" color="#000000"&gt;acad.lsp&lt;/FONT&gt;&lt;/STRONG&gt; file [in a place where AutoCAD knows to look] containing this:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;(defun S::STARTUP ()
  (setvar "modemacro"
    (strcat
      "$(if,$(getvar,snapmode), Snap:)"
      "$(if,$(getvar,snapmode),$(rtos,$(getvar,snapunit))  )"
    )
  )
)&lt;/LI-CODE&gt;
&lt;P&gt;When Snap is turned on at a setting of 0.5, that shows this in the status line:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kent1Cooper_2-1627398740839.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/945627iD137DF90F23C49DE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Kent1Cooper_2-1627398740839.png" alt="Kent1Cooper_2-1627398740839.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;which goes away when I turn Snap off.&amp;nbsp; [The blue square with white dots to the right shows &lt;EM&gt;that Snap is on&lt;/EM&gt;, but not the distance setting.]&lt;/P&gt;
&lt;P&gt;You could have an indicator of whether Ortho is on added to that, but [you likely already know] there's one in the status line [if you have chosen to include it in the Customization choices]:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Kent1Cooper_1-1627398572632.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/945625iC24290D10FDE70A2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Kent1Cooper_1-1627398572632.png" alt="Kent1Cooper_1-1627398572632.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The rest should be achievable as already suggested with a floating command line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Jul 2021 15:18:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10499711#M73796</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-07-27T15:18:20Z</dc:date>
    </item>
    <item>
      <title>Re: On-screen Command and Status Display Overlay</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10499821#M73797</link>
      <description>Are you trying to run a demonstration class? Or some sort of online tutorial?&lt;BR /&gt;&lt;BR /&gt;In the meantime... CTRL+F2 then park that pop-up on a screen away from the drafting area of AutoCAD is as close as you can get in the core program as an option for what you seek.</description>
      <pubDate>Tue, 27 Jul 2021 15:47:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10499821#M73797</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2021-07-27T15:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: On-screen Command and Status Display Overlay</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10502855#M73798</link>
      <description>&lt;P&gt;Thanks for the replies. It's not for a tutorial or demonstration, it's that I frequently work in dense point clouds with a lot of modelled piping and I find that the indicators at the right-bottom of the Plant 3D screen are out of my field of vision and I often forget which mode of Ortho, F3, F4, etc. is current.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jul 2021 16:03:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10502855#M73798</guid>
      <dc:creator>cadPNYBN</dc:creator>
      <dc:date>2021-07-28T16:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: On-screen Command and Status Display Overlay</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10502901#M73799</link>
      <description>&lt;P&gt;I don't know how relevant this would be to your setup, but I have a Logitech mouse that allows me to customize the buttons on the mouse on a per-program basis.&amp;nbsp; So what I do is program the forward button to F3 (osnap toggle) and the back button to F8 (ortho toggle) for when AutoCAD is the active program.&lt;BR /&gt;&lt;BR /&gt;Then, as I'm drafting, if my lines aren't snapping, or drawing straight, or vice versa, I can press those buttons with my thumb as I'm in the middle of commands and not mess up my workflow.&lt;/P&gt;</description>
      <pubDate>Wed, 28 Jul 2021 16:23:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10502901#M73799</guid>
      <dc:creator>nrz13</dc:creator>
      <dc:date>2021-07-28T16:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: On-screen Command and Status Display Overlay</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10531166#M73800</link>
      <description>&lt;P&gt;Screen mockup.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Aug 2021 13:31:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10531166#M73800</guid>
      <dc:creator>cadPNYBN</dc:creator>
      <dc:date>2021-08-09T13:31:42Z</dc:date>
    </item>
    <item>
      <title>Re: On-screen Command and Status Display Overlay</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10531286#M73801</link>
      <description>You will have to find a 3rd party AutoCAD or OS add-on that does all of that: sorry.&lt;BR /&gt;&lt;BR /&gt;But if you want to ask in one or more of the customizations forums here you might be able to simulate something like that with pop-ups &lt;A href="https://forums.autodesk.com/t5/autocad-customization/ct-p/AutoCADTopic1" target="_blank"&gt;https://forums.autodesk.com/t5/autocad-customization/ct-p/AutoCADTopic1&lt;/A&gt;</description>
      <pubDate>Mon, 09 Aug 2021 14:07:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10531286#M73801</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2021-08-09T14:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: On-screen Command and Status Display Overlay</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10531697#M73802</link>
      <description>&lt;P&gt;Thanks for the suggestion.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Aug 2021 16:17:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/on-screen-command-and-status-display-overlay/m-p/10531697#M73802</guid>
      <dc:creator>cadPNYBN</dc:creator>
      <dc:date>2021-08-09T16:17:00Z</dc:date>
    </item>
  </channel>
</rss>

