<?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: Command Line not displaying what the Text Window displays in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/command-line-not-displaying-what-the-text-window-displays/m-p/5702361#M140456</link>
    <description>&lt;P&gt;Thank you, I was not aware of this Dynamic Input on the command line.&amp;nbsp; Now that I know about that, that could be usefull.&amp;nbsp; I can change my code from the brackets to the parenthesis and that should look ok.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can't seem to find any documentation&amp;nbsp;either.&amp;nbsp; But I guess it's just what you said and is almost too simple.&amp;nbsp; Example type in: [YOU/ME] and&amp;nbsp;YOU or ME become two options on your command line.&amp;nbsp; Very simple.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, thanks&lt;/P&gt;</description>
    <pubDate>Wed, 01 Jul 2015 19:27:54 GMT</pubDate>
    <dc:creator>EricStiles</dc:creator>
    <dc:date>2015-07-01T19:27:54Z</dc:date>
    <item>
      <title>Command Line not displaying what the Text Window displays</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/command-line-not-displaying-what-the-text-window-displays/m-p/5700940#M140453</link>
      <description>&lt;P&gt;I've written a lisp program that I've used for years.&amp;nbsp; I know the prompts by heart and don't read them, so I'm not sure when this happened, but I just noticed that the prompt was missing characters.&amp;nbsp;&amp;nbsp;I spent some time trying to track down why some of the characters were missing when I noticed that the characters show up in the Text Window vs the command prompt area.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my lisp program, it will ask the user for some text with a default and some other options.&amp;nbsp; It should look something like this and does if you hit the F2 key and look at it in the Text Window:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[.]=none, [/]=settings, Text? &amp;lt;default text&amp;gt;:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But in the command line area it looks like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[.]=none, =settings, Text? &amp;lt;default text&amp;gt;:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Notice that the settings button is not being displayed.&lt;BR /&gt;I've also attached a screen shot.&amp;nbsp; This is strange, has anyone else seen this?&lt;/P&gt;&lt;P&gt;I'm using Autocad Civil 3D 2013&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Eric&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2015 02:23:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/command-line-not-displaying-what-the-text-window-displays/m-p/5700940#M140453</guid>
      <dc:creator>EricStiles</dc:creator>
      <dc:date>2015-07-01T02:23:40Z</dc:date>
    </item>
    <item>
      <title>Re: Command Line not displaying what the Text Window displays</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/command-line-not-displaying-what-the-text-window-displays/m-p/5700988#M140454</link>
      <description>&lt;P&gt;Is your AutoCAD up-to-date?&lt;/P&gt;&lt;P&gt;Is your AutoCAD font missing for the command line window or changed for some reason?&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2015 04:49:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/command-line-not-displaying-what-the-text-window-displays/m-p/5700988#M140454</guid>
      <dc:creator>BeKirra</dc:creator>
      <dc:date>2015-07-01T04:49:46Z</dc:date>
    </item>
    <item>
      <title>Re: Command Line not displaying what the Text Window displays</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/command-line-not-displaying-what-the-text-window-displays/m-p/5701214#M140455</link>
      <description>&lt;P&gt;Hi Eric,&lt;/P&gt;
&lt;P&gt;with the introduction of dynamic input, we can just pick a command's option from the command line instead of typing a letter in the option.&lt;BR /&gt;The '[ ]' characters in a prompt, defines a dynamic prompt.&lt;/P&gt;
&lt;P&gt;in your prompt you are using two sets of '[ ]', AutoCAD interprets the firt one as dynamic options, and disregard the second one, inside the function...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(progn
  (initget "Yes No")
  (setq x (getkword "Are you seeing the difference in the prompt? (Yes or No) "))
)

(progn
  (initget "Yes No")
  (setq x (getkword "Are you seeing the difference in the prompt? [Yes / No] "))
)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Second problem, the '/' character in a prompt option, It is interpreted as a 'separator' for a new option, and that I know, there is no way to AutoCAD interpret the '/' as a text character in a dynamic prompt...&lt;/P&gt;
&lt;P&gt;One option to you, will be to change the '[ ]' characters to '( )'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(progn
  (initget ". / Text?")
  (setq x (getkword "Are you seeing the difference in the prompt? (.)=none, (/)=settings, Text? &amp;lt;default text&amp;gt;:"))
)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry, I have tried to find documentation about this subject to share...unsuccessfully...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps, &lt;BR /&gt;Henrique&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2015 09:41:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/command-line-not-displaying-what-the-text-window-displays/m-p/5701214#M140455</guid>
      <dc:creator>hmsilva</dc:creator>
      <dc:date>2015-07-01T09:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Command Line not displaying what the Text Window displays</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/command-line-not-displaying-what-the-text-window-displays/m-p/5702361#M140456</link>
      <description>&lt;P&gt;Thank you, I was not aware of this Dynamic Input on the command line.&amp;nbsp; Now that I know about that, that could be usefull.&amp;nbsp; I can change my code from the brackets to the parenthesis and that should look ok.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can't seem to find any documentation&amp;nbsp;either.&amp;nbsp; But I guess it's just what you said and is almost too simple.&amp;nbsp; Example type in: [YOU/ME] and&amp;nbsp;YOU or ME become two options on your command line.&amp;nbsp; Very simple.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, thanks&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2015 19:27:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/command-line-not-displaying-what-the-text-window-displays/m-p/5702361#M140456</guid>
      <dc:creator>EricStiles</dc:creator>
      <dc:date>2015-07-01T19:27:54Z</dc:date>
    </item>
    <item>
      <title>Re: Command Line not displaying what the Text Window displays</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/command-line-not-displaying-what-the-text-window-displays/m-p/5703145#M140457</link>
      <description>&lt;P&gt;You're welcome, Eric!&lt;BR /&gt;Glad I could help&lt;BR /&gt;&lt;BR /&gt;Henrique&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jul 2015 08:10:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/command-line-not-displaying-what-the-text-window-displays/m-p/5703145#M140457</guid>
      <dc:creator>hmsilva</dc:creator>
      <dc:date>2015-07-02T08:10:33Z</dc:date>
    </item>
  </channel>
</rss>

