<?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: Is there a way to set the default options for a tool? in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-set-the-default-options-for-a-tool/m-p/8384284#M160160</link>
    <description>&lt;P&gt;One way would be to UNDEFINE the native command, and make a new definition of it that builds the option you prefer into it.&amp;nbsp; &lt;A href="https://forums.autodesk.com/t5/autocad-forum/rotate-by-reference-as-default/m-p/8167272/highlight/true#M943160" target="_blank"&gt;&amp;gt;Here&amp;lt;&lt;/A&gt; is a recent example that's one of your preferences [as a &lt;EM&gt;separate command name&lt;/EM&gt;&amp;nbsp; for Rotate incorporating the Reference option, but see the last&amp;nbsp;paragraph in the message].&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#ff6600"&gt;EDIT:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Here's what that looks like -- put this in&amp;nbsp;your acaddoc.lsp file so it will happen in every drawing:&lt;/P&gt;
&lt;PRE&gt;(command "_.undefine" "ROTATE")
(defun C:ROTATE (/ ss) ; Rotate with built-in Reference option
  (if (setq ss (ssget))
    (command "_.rotate" ss "" pause "_reference")
  )
)&lt;/PRE&gt;
&lt;P&gt;The big advantage of that over the command-macro approach such as with a Tool Palette button item, is that &lt;EM&gt;any&lt;/EM&gt;&amp;nbsp; invoking of the command name, such as from its standard icon in the ribbon, or typing in the name or the standard command alias, or autocomplete, will get you your personalized version -- you&amp;nbsp;aren't restricted to using&amp;nbsp;it &lt;EM&gt;only&lt;/EM&gt;&amp;nbsp; by way of a single menu item.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Similar personalized definitions can be constructed for your other commands.&lt;/P&gt;</description>
    <pubDate>Tue, 06 Nov 2018 21:14:11 GMT</pubDate>
    <dc:creator>Kent1Cooper</dc:creator>
    <dc:date>2018-11-06T21:14:11Z</dc:date>
    <item>
      <title>Is there a way to set the default options for a tool?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-set-the-default-options-for-a-tool/m-p/8384246#M160157</link>
      <description>&lt;P&gt;For example, 99.9% of the time, when I use the LENGTHEN command, I want to use the Dynamic option. But that's not the default; I have to select it special, every single time.&lt;/P&gt;&lt;P&gt;For Rotate, I nearly always want the Reference angle option.&lt;/P&gt;&lt;P&gt;When I Break an element, I want to select my First point, then my second.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There are so many tools, and I find myself wasting time and energy having to take the extra step to select the option I always use, because it isn't the default setting. Is there any way to change/customize what the default option is for any tools?&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;MaryB&lt;BR /&gt;AutoCAD/Civil3D 2018&lt;/P&gt;</description>
      <pubDate>Tue, 06 Nov 2018 20:45:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-set-the-default-options-for-a-tool/m-p/8384246#M160157</guid>
      <dc:creator>MbMinx</dc:creator>
      <dc:date>2018-11-06T20:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to set the default options for a tool?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-set-the-default-options-for-a-tool/m-p/8384271#M160158</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you always have the chance to create a small LISP that gets loaded every time you start AutoCAD which can start a self defined command like&lt;/P&gt;
&lt;PRE&gt;(defun C:LENDY()(command "_LENGTHEN" "_DYNAMIC"))&lt;/PRE&gt;
&lt;P&gt;And the start this new command &lt;STRONG&gt;&lt;FONT color="#333399"&gt;LENDY&lt;/FONT&gt; &lt;/STRONG&gt;for &lt;STRONG&gt;&lt;FONT color="#333399"&gt;LEN&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT color="#333399"&gt;gthen&lt;/FONT&gt;&lt;STRONG&gt; &lt;FONT color="#333399"&gt;DY&lt;/FONT&gt;&lt;/STRONG&gt;&lt;FONT color="#333399"&gt;namic&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;You can do this ´for each command you'd like to use special options.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add these definitions to the ACADDOC.LSP file so these functions are automatically loaded.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;</description>
      <pubDate>Tue, 06 Nov 2018 20:55:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-set-the-default-options-for-a-tool/m-p/8384271#M160158</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2018-11-06T20:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to set the default options for a tool?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-set-the-default-options-for-a-tool/m-p/8384276#M160159</link>
      <description>Customize: use LISP if you like to type, or if you like to click on buttons them simply edit the code in CUI command to do what you want. That's been a feature for 30-years now in AutoCAD.&lt;BR /&gt;&lt;BR /&gt;How would you like to proceed and hat do you need help with?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Tue, 06 Nov 2018 20:57:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-set-the-default-options-for-a-tool/m-p/8384276#M160159</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2018-11-06T20:57:12Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to set the default options for a tool?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-set-the-default-options-for-a-tool/m-p/8384284#M160160</link>
      <description>&lt;P&gt;One way would be to UNDEFINE the native command, and make a new definition of it that builds the option you prefer into it.&amp;nbsp; &lt;A href="https://forums.autodesk.com/t5/autocad-forum/rotate-by-reference-as-default/m-p/8167272/highlight/true#M943160" target="_blank"&gt;&amp;gt;Here&amp;lt;&lt;/A&gt; is a recent example that's one of your preferences [as a &lt;EM&gt;separate command name&lt;/EM&gt;&amp;nbsp; for Rotate incorporating the Reference option, but see the last&amp;nbsp;paragraph in the message].&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#ff6600"&gt;EDIT:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Here's what that looks like -- put this in&amp;nbsp;your acaddoc.lsp file so it will happen in every drawing:&lt;/P&gt;
&lt;PRE&gt;(command "_.undefine" "ROTATE")
(defun C:ROTATE (/ ss) ; Rotate with built-in Reference option
  (if (setq ss (ssget))
    (command "_.rotate" ss "" pause "_reference")
  )
)&lt;/PRE&gt;
&lt;P&gt;The big advantage of that over the command-macro approach such as with a Tool Palette button item, is that &lt;EM&gt;any&lt;/EM&gt;&amp;nbsp; invoking of the command name, such as from its standard icon in the ribbon, or typing in the name or the standard command alias, or autocomplete, will get you your personalized version -- you&amp;nbsp;aren't restricted to using&amp;nbsp;it &lt;EM&gt;only&lt;/EM&gt;&amp;nbsp; by way of a single menu item.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Similar personalized definitions can be constructed for your other commands.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Nov 2018 21:14:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-set-the-default-options-for-a-tool/m-p/8384284#M160160</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2018-11-06T21:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to set the default options for a tool?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-set-the-default-options-for-a-tool/m-p/8384543#M160161</link>
      <description>&lt;P&gt;So, there aren't something like user preferences that store that information for you?&lt;/P&gt;&lt;P&gt;I don't know if I'm allowed to make that kind of change; I'm not the CAD manager. I edited my PGP file, and he allowed that, but he told me he doesn't want me getting into LISP so I don't "screw anything up". He tells me to walk before I run, but I'm stumbling a lot having to type and retype and retype so many things. At least my ESC key hasn't broken yet &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've looked around a little; I didn't see anything but I might have missed it. Is there a board for people who have come from "other software" (MicroStation) where there might be some targeted assistance with all the things that are so different?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Nov 2018 22:46:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-set-the-default-options-for-a-tool/m-p/8384543#M160161</guid>
      <dc:creator>MbMinx</dc:creator>
      <dc:date>2018-11-06T22:46:53Z</dc:date>
    </item>
    <item>
      <title>Re: Is there a way to set the default options for a tool?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-set-the-default-options-for-a-tool/m-p/8385010#M160162</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/538193"&gt;@MbMinx&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;So, there aren't something like user preferences that store that information for you? ….&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not that I'm aware of.&amp;nbsp; For some commands, some defaults are stored while you're in the same editing session of the same drawing [such as Polyline width], but they revert to the AutoCAD-default values when you close the drawing.&amp;nbsp; For some things, some settings are saved in individual drawings, but don't&amp;nbsp;carry over to other drawings as a result.&amp;nbsp; For some commands, no defaults are saved at all [such as DIVIDE and MEASURE -- one of the main reasons I made &lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/enhanced-divide-amp-measure-upgraded/m-p/2738767" target="_blank"&gt;DivideMeasurePlus.lsp&lt;/A&gt;].&amp;nbsp; But if you are not permitted to introduce AutoLisp routines such as command redefinitions or auto-loading System Variable settings, I can't think of a way to do what you want.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Nov 2018 07:00:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/is-there-a-way-to-set-the-default-options-for-a-tool/m-p/8385010#M160162</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2018-11-07T07:00:29Z</dc:date>
    </item>
  </channel>
</rss>

