<?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: Edit Alias for Command Within A Command in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6526780#M267088</link>
    <description>Hi, Great idea, can you supply a sample lisp code on how to redefine the f keys. I did it years ago but things change. Thanks and Great skill</description>
    <pubDate>Sat, 27 Aug 2016 16:39:40 GMT</pubDate>
    <dc:creator>bdesign71</dc:creator>
    <dc:date>2016-08-27T16:39:40Z</dc:date>
    <item>
      <title>Edit Alias for Command Within A Command</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476056#M267078</link>
      <description>&lt;P&gt;Ok so when I work, I use the NEAREST command within object snap a lot, but I prefer that it is not selected all the time when object snap is on.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So when I am using a command already like drawing a polyline or moving the endpoint of a line - within that command i use the alias NEAR.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know if I can change the command for this alias command within a command? I'd just like to change it to N.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Aug 2016 15:58:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476056#M267078</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-03T15:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: Edit Alias for Command Within A Command</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476112#M267079</link>
      <description>&lt;P&gt;Not within acad.pgp but it can be assigned to a F function key (e.g. F2, F3.... ) in the CUI&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or it can be done with autolisp, and when running the command, use a ' mark.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Aug 2016 16:19:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476112#M267079</guid>
      <dc:creator>Patchy</dc:creator>
      <dc:date>2016-08-03T16:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Edit Alias for Command Within A Command</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476174#M267080</link>
      <description>&lt;P&gt;Just so you know, the first &lt;EM&gt;three&lt;/EM&gt; letters are enough as abbreviations for Osnap modes&amp;nbsp;-- you can type just &lt;STRONG&gt;NEA&lt;/STRONG&gt; and get that mode.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But you can also define a "command" for it that can be used transparently.&amp;nbsp; Minimally tested:&lt;/P&gt;
&lt;P&gt;(defun C:N () (command "_nearest"))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To use it in a drawing or editing command, you need to type the name &lt;EM&gt;with the asterisk prefix&lt;/EM&gt; that &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/558015"&gt;@Patchy﻿&lt;/a&gt;&amp;nbsp;mentioned:&amp;nbsp; &lt;STRONG&gt;'&lt;/STRONG&gt;N.&amp;nbsp; One keystroke shorter than NEA....&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And NEArest could be put in a Tool Palette button, and probably some other menu-pick options.&lt;/P&gt;</description>
      <pubDate>Wed, 03 Aug 2016 16:46:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476174#M267080</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2016-08-03T16:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Edit Alias for Command Within A Command</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476185#M267081</link>
      <description>&lt;P&gt;Thank you for explaining it in detail, I know it works like that but if I write it, it confuses people (English is my 2nd language)&lt;/P&gt;</description>
      <pubDate>Wed, 03 Aug 2016 16:47:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476185#M267081</guid>
      <dc:creator>Patchy</dc:creator>
      <dc:date>2016-08-03T16:47:23Z</dc:date>
    </item>
    <item>
      <title>Betreff: Edit Alias for Command Within A Command</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476199#M267082</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous﻿,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please take a look at &lt;A href="https://forums.autodesk.com/t5/drafting-techniques/alias-for-osnap-nearest-while-in-command/td-p/1756406" target="_blank"&gt;this discussion&lt;/A&gt; - post no 14. Seems like it could work but should be a lot of work to rearrange all other snaps in order to make&amp;nbsp;NEA working with only a &amp;lt;N&amp;gt;.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-----------------------------&lt;BR /&gt;Please accept as solution if my post fully resolves your issue, or reply with additional details if the problem persists.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Aug 2016 17:26:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476199#M267082</guid>
      <dc:creator>Sofia.Xanthopoulou</dc:creator>
      <dc:date>2016-08-03T17:26:58Z</dc:date>
    </item>
    <item>
      <title>Betreff: Edit Alias for Command Within A Command</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476212#M267083</link>
      <description>&lt;P&gt;No #14 &lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-very-happy.png" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Aug 2016 16:58:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476212#M267083</guid>
      <dc:creator>Patchy</dc:creator>
      <dc:date>2016-08-03T16:58:27Z</dc:date>
    </item>
    <item>
      <title>Betreff: Edit Alias for Command Within A Command</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476295#M267084</link>
      <description>&lt;P&gt;Oh, come on ... as if you never forget anything&amp;nbsp;&lt;img id="smileyhappy" class="emoticon emoticon-smileyhappy" src="https://forums.autodesk.com/i/smilies/16x16_smiley-happy.png" alt="Smiley Happy" title="Smiley Happy" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Well, at least I amused you&amp;nbsp;&lt;img id="smileywink" class="emoticon emoticon-smileywink" src="https://forums.autodesk.com/i/smilies/16x16_smiley-wink.png" alt="Smiley Wink" title="Smiley Wink" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the catch Patchy&amp;nbsp;- link is inserted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Aug 2016 17:29:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476295#M267084</guid>
      <dc:creator>Sofia.Xanthopoulou</dc:creator>
      <dc:date>2016-08-03T17:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: Edit Alias for Command Within A Command</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476398#M267085</link>
      <description>&lt;P&gt;From my experience (and my settings) are F* keys the best option.&lt;/P&gt;
&lt;P&gt;I have F1 for nearest and F2 for perpendicular.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Aug 2016 18:02:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476398#M267085</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2016-08-03T18:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Edit Alias for Command Within A Command</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476438#M267086</link>
      <description>&lt;P&gt;Thanks all. I was able to assign it to F2 which seemed the easiest (and learned about the CUI).&amp;nbsp;Ctrl + right click + "N" doesnt seem to save much&amp;nbsp;effort from typing "NEA"&lt;/P&gt;</description>
      <pubDate>Wed, 03 Aug 2016 18:13:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6476438#M267086</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-08-03T18:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: Edit Alias for Command Within A Command</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6477031#M267087</link>
      <description>Please unassign the [F2] key. It is used to flip the TEXTSCREEN.&lt;BR /&gt;&lt;BR /&gt;Our setup:&lt;BR /&gt;F1 - CEN&lt;BR /&gt;F2 - Default behavior (TEXTSCREEN)&lt;BR /&gt;F3 - ENDP (notice the 4th character?)&lt;BR /&gt;F4 - MID&lt;BR /&gt;F5 - PER&lt;BR /&gt;F6 - NEA&lt;BR /&gt;F7 - NODE&lt;BR /&gt;F8 - Default behavior (ORTHOMODE)&lt;BR /&gt;F9 - INT&lt;BR /&gt;F10 - NONE&lt;BR /&gt;F11 - QUAD&lt;BR /&gt;F12 - TAN&lt;BR /&gt;&lt;BR /&gt;To access the original key assignment press and&lt;BR /&gt;hold the [Shift] key, then press desired F# key.&lt;BR /&gt;&lt;BR /&gt;???&lt;BR /&gt;</description>
      <pubDate>Wed, 03 Aug 2016 22:32:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6477031#M267087</guid>
      <dc:creator>scot-65</dc:creator>
      <dc:date>2016-08-03T22:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Edit Alias for Command Within A Command</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6526780#M267088</link>
      <description>Hi, Great idea, can you supply a sample lisp code on how to redefine the f keys. I did it years ago but things change. Thanks and Great skill</description>
      <pubDate>Sat, 27 Aug 2016 16:39:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6526780#M267088</guid>
      <dc:creator>bdesign71</dc:creator>
      <dc:date>2016-08-27T16:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: Edit Alias for Command Within A Command</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6526837#M267089</link>
      <description>&lt;P&gt;CUI command, and this is my F9 for snapping to Endpoint.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="F9.JPG" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/267548i9CC5ACD352B06ECF/image-size/large?v=v2&amp;amp;px=999" role="button" title="F9.JPG" alt="F9.JPG" /&gt;&lt;/span&gt;﻿&lt;/P&gt;</description>
      <pubDate>Sat, 27 Aug 2016 18:13:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/edit-alias-for-command-within-a-command/m-p/6526837#M267089</guid>
      <dc:creator>Patchy</dc:creator>
      <dc:date>2016-08-27T18:13:40Z</dc:date>
    </item>
  </channel>
</rss>

