<?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: Default distance for dynamic input in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6859390#M240992</link>
    <description>&lt;P&gt;HI,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;usually OFFSET command keep the last distance you enter.no need to always enter the number.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Command: OFFSET&lt;BR /&gt;Current settings: Erase source=No Layer=Source OFFSETGAPTYPE=0&lt;BR /&gt;Specify offset distance or [Through/Erase/Layer] &amp;lt;125.0000&amp;gt;:&lt;/P&gt;</description>
    <pubDate>Tue, 07 Feb 2017 11:05:11 GMT</pubDate>
    <dc:creator>imadHabash</dc:creator>
    <dc:date>2017-02-07T11:05:11Z</dc:date>
    <item>
      <title>Default distance for dynamic input</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6859229#M240990</link>
      <description>&lt;P&gt;A lot of the offset distances I use are the same number so I am CONSTANTLY typing in the number 125.&lt;/P&gt;&lt;P&gt;Is there a way I can have a keyboard shortcut which would enters "125" into the dynamic input box and hits enter for me?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Like I hit D" and it would do that for me?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 09:22:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6859229#M240990</guid>
      <dc:creator>sgrya1</dc:creator>
      <dc:date>2017-02-07T09:22:25Z</dc:date>
    </item>
    <item>
      <title>Re: Default distance for dynamic input</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6859317#M240991</link>
      <description>&lt;P&gt;- You can't hit just D. You can hit &lt;STRONG&gt;&lt;FONT color="#000000"&gt;'&lt;/FONT&gt;D&amp;nbsp;&lt;/STRONG&gt;which would run a simple routine, but that loose the point, typing 125 would&amp;nbsp;be faster.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- You can assign a function key to do that. One hit can fill 125 with or without &amp;lt;enter&amp;gt; at the end. Universal, you can use it in other commands, not just OFFSET.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- You can have a routine called D, which runs a regular OFFSET with 125 under last options &amp;lt;125&amp;gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:D nil
  (setvar 'OFFSETDIST 125)
  (command "_.OFFSET")
  (princ)
)&lt;/PRE&gt;
&lt;P&gt;- You can pre-select 125 for OFFSET's "last" option just with a drawing launch.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(setvar 'OFFSETDIST 125) -&amp;nbsp;This line has to be run on the start. You can use acaddoc.lsp, see&amp;nbsp;&lt;A href="http://help.autodesk.com/view/ACD/2015/ENU/?guid=GUID-FDB4038D-1620-4A56-8824-D37729D42520" target="_self"&gt;HELP&lt;/A&gt;&amp;nbsp;for more information.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 10:32:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6859317#M240991</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2017-02-07T10:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: Default distance for dynamic input</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6859390#M240992</link>
      <description>&lt;P&gt;HI,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;usually OFFSET command keep the last distance you enter.no need to always enter the number.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Command: OFFSET&lt;BR /&gt;Current settings: Erase source=No Layer=Source OFFSETGAPTYPE=0&lt;BR /&gt;Specify offset distance or [Through/Erase/Layer] &amp;lt;125.0000&amp;gt;:&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 11:05:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6859390#M240992</guid>
      <dc:creator>imadHabash</dc:creator>
      <dc:date>2017-02-07T11:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: Default distance for dynamic input</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6859698#M240993</link>
      <description>&lt;P&gt;Apologies. I didn't explain this correctly. Can you ignore the 'offset' term. It's often what I need to do but via dynamic input and _from command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Basically, I want to be able to click on a line, for the dynamic input box to appear, and then hit a shortcut key that would enter '125' and then exit the command. This would make the line 125mm long, for example.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 13:28:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6859698#M240993</guid>
      <dc:creator>SRSDS</dc:creator>
      <dc:date>2017-02-07T13:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: Default distance for dynamic input</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6859704#M240994</link>
      <description>&lt;P&gt;CTRL+V would save one keystroke, assuming you'd copied the value earlier.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 13:31:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6859704#M240994</guid>
      <dc:creator>dbroad</dc:creator>
      <dc:date>2017-02-07T13:31:53Z</dc:date>
    </item>
    <item>
      <title>Re: Default distance for dynamic input</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6859715#M240995</link>
      <description>&lt;P&gt;Realized that I haven't explained it properly again...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;One option is inputting '125' after the &lt;STRONG&gt;_from&lt;/STRONG&gt; command.&lt;/P&gt;&lt;P&gt;Another would be entering '125' via the&amp;nbsp;dynamic input.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm thinking&amp;nbsp;the only way is using the 3rd party AutoHotKey programme and setting up a routine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A lisp probably wouldn't work while a command is active nor any other method.&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 13:36:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6859715#M240995</guid>
      <dc:creator>SRSDS</dc:creator>
      <dc:date>2017-02-07T13:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Default distance for dynamic input</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6859750#M240996</link>
      <description>&lt;P&gt;As I proposed earlier...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Go to CUI, create new command, name it e.g. '125', add a macro &lt;STRONG&gt;125&lt;/STRONG&gt;, add this command between Keyboard shortcuts and assign some shortcut you don't use. You can even assign&amp;nbsp;some F-key, if there is a one which you don't use.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;See the&amp;nbsp;&lt;A href="http://autode.sk/2khGhL9" target="_self"&gt;SCREENCAST&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 13:48:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6859750#M240996</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2017-02-07T13:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: Default distance for dynamic input</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6861131#M240997</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/111582"&gt;@sgrya1&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Did&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1779365"&gt;@ВeekeeCZ&lt;/a&gt;'s suggestion help you to create your button? &amp;nbsp;Once you have it created you could even set it to read a variable. Then when you start a drawing you can set the proper value for the variable when you start.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For instance, if you set the variable name to "My_Num" in your button, at the command line you would just have to SetQ My_Num "125"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#808000"&gt;Please select the Accept as Solution button if my post solves your issue or answers your question.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Feb 2017 21:43:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/default-distance-for-dynamic-input/m-p/6861131#M240997</guid>
      <dc:creator>john.vellek</dc:creator>
      <dc:date>2017-02-07T21:43:26Z</dc:date>
    </item>
  </channel>
</rss>

