<?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>tema Re: Keyboard shortcut for right-click menu items? en AutoCAD for Mac Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-for-mac-forum/keyboard-shortcut-for-right-click-menu-items/m-p/12429207#M47439</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3687313"&gt;@bretwieseler&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why not to use one-letter key for selecting options inside such commands:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;_pedit&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Enter an option [&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;C&lt;/STRONG&gt;&lt;/FONT&gt;lose/&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;J&lt;/FONT&gt;&lt;/STRONG&gt;oin/&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;W&lt;/FONT&gt;&lt;/STRONG&gt;idth/&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;E&lt;/STRONG&gt;&lt;/FONT&gt;dit vertex/&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;F&lt;/FONT&gt;&lt;/STRONG&gt;it/&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;S&lt;/STRONG&gt;&lt;/FONT&gt;pline/&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;D&lt;/FONT&gt;&lt;/STRONG&gt;ecurve/&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;L&lt;/STRONG&gt;&lt;/FONT&gt;type gen/&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;R&lt;/FONT&gt;&lt;/STRONG&gt;everse/&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;U&lt;/FONT&gt;&lt;/STRONG&gt;ndo]:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;S+Spacebar for Spline,&lt;/P&gt;&lt;P&gt;F+Spacebar for Fit,&lt;/P&gt;&lt;P&gt;etc.&lt;/P&gt;</description>
    <pubDate>Fri, 08 Dec 2023 19:44:35 GMT</pubDate>
    <dc:creator>maxim_k</dc:creator>
    <dc:date>2023-12-08T19:44:35Z</dc:date>
    <item>
      <title>Keyboard shortcut for right-click menu items?</title>
      <link>https://forums.autodesk.com/t5/autocad-for-mac-forum/keyboard-shortcut-for-right-click-menu-items/m-p/12428968#M47436</link>
      <description>&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to set a keyboard shortcut for actions like polyline/spline fit, or other such right-click items?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Dec 2023 17:37:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-for-mac-forum/keyboard-shortcut-for-right-click-menu-items/m-p/12428968#M47436</guid>
      <dc:creator>bretwieseler</dc:creator>
      <dc:date>2023-12-08T17:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Keyboard shortcut for right-click menu items?</title>
      <link>https://forums.autodesk.com/t5/autocad-for-mac-forum/keyboard-shortcut-for-right-click-menu-items/m-p/12429046#M47437</link>
      <description>&lt;P&gt;commands that require a second prompt response to carry out unfortunately cannot in and of themselves be added in as a shortcut. But if you have a lisp function then that can be added in as a shorctut.&lt;/P&gt;&lt;P&gt;For example for Pedit Spline a simple lisp function could be:&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(defun c:spf ()(if(ssget "I" '((0 . "LWPOLYLINE")))(command"_.pedit""_Spline""_Exit")(princ"\nNo Pline Selected."))(princ))&lt;/LI-CODE&gt;&lt;P&gt;Now you can save this as spf.lsp &amp;amp; load it (load"spf") then you can add SPF as shortcut:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.autodesk.com/support/technical/article/caas/sfdcarticles/sfdcarticles/To-Customize-Shortcut-Keys-in-AutoCAD-for-Mac.html" target="_blank"&gt;https://www.autodesk.com/support/technical/article/caas/sfdcarticles/sfdcarticles/To-Customize-Shortcut-Keys-in-AutoCAD-for-Mac.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Dec 2023 18:18:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-for-mac-forum/keyboard-shortcut-for-right-click-menu-items/m-p/12429046#M47437</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-12-08T18:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: Keyboard shortcut for right-click menu items?</title>
      <link>https://forums.autodesk.com/t5/autocad-for-mac-forum/keyboard-shortcut-for-right-click-menu-items/m-p/12429054#M47438</link>
      <description>&lt;P&gt;FYI, you can also place the lisp function into startup suite to load automatically:&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.autodesk.com/view/ACDMAC/2024/ENU/?guid=GUID-47621BB1-F29D-4A69-9C99-A6E1495FBA38" target="_blank"&gt;https://help.autodesk.com/view/ACDMAC/2024/ENU/?guid=GUID-47621BB1-F29D-4A69-9C99-A6E1495FBA38&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Dec 2023 18:23:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-for-mac-forum/keyboard-shortcut-for-right-click-menu-items/m-p/12429054#M47438</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-12-08T18:23:11Z</dc:date>
    </item>
    <item>
      <title>Re: Keyboard shortcut for right-click menu items?</title>
      <link>https://forums.autodesk.com/t5/autocad-for-mac-forum/keyboard-shortcut-for-right-click-menu-items/m-p/12429207#M47439</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3687313"&gt;@bretwieseler&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why not to use one-letter key for selecting options inside such commands:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;_pedit&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Enter an option [&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;C&lt;/STRONG&gt;&lt;/FONT&gt;lose/&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;J&lt;/FONT&gt;&lt;/STRONG&gt;oin/&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;W&lt;/FONT&gt;&lt;/STRONG&gt;idth/&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;E&lt;/STRONG&gt;&lt;/FONT&gt;dit vertex/&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;F&lt;/FONT&gt;&lt;/STRONG&gt;it/&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;S&lt;/STRONG&gt;&lt;/FONT&gt;pline/&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;D&lt;/FONT&gt;&lt;/STRONG&gt;ecurve/&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;L&lt;/STRONG&gt;&lt;/FONT&gt;type gen/&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;R&lt;/FONT&gt;&lt;/STRONG&gt;everse/&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;U&lt;/FONT&gt;&lt;/STRONG&gt;ndo]:&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;S+Spacebar for Spline,&lt;/P&gt;&lt;P&gt;F+Spacebar for Fit,&lt;/P&gt;&lt;P&gt;etc.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Dec 2023 19:44:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-for-mac-forum/keyboard-shortcut-for-right-click-menu-items/m-p/12429207#M47439</guid>
      <dc:creator>maxim_k</dc:creator>
      <dc:date>2023-12-08T19:44:35Z</dc:date>
    </item>
    <item>
      <title>Re: Keyboard shortcut for right-click menu items?</title>
      <link>https://forums.autodesk.com/t5/autocad-for-mac-forum/keyboard-shortcut-for-right-click-menu-items/m-p/12429307#M47440</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/1137264"&gt;@paullimapa&lt;/a&gt;: Unfortunately, we used AutoCAD LT, so the LISP solution isn't an option.&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/665765"&gt;@maxim_k&lt;/a&gt;: Ideally I would select the polyline and key in the shortcut without having to type anything else in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the ideas though!&lt;/P&gt;</description>
      <pubDate>Fri, 08 Dec 2023 20:29:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-for-mac-forum/keyboard-shortcut-for-right-click-menu-items/m-p/12429307#M47440</guid>
      <dc:creator>bretwieseler</dc:creator>
      <dc:date>2023-12-08T20:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: Keyboard shortcut for right-click menu items?</title>
      <link>https://forums.autodesk.com/t5/autocad-for-mac-forum/keyboard-shortcut-for-right-click-menu-items/m-p/12429967#M47441</link>
      <description>&lt;P&gt;Hi Bret,&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3687313"&gt;@bretwieseler&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3687313"&gt;@bretwieseler&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;........&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/665765"&gt;@maxim_k&lt;/a&gt;: Ideally I would select the polyline and key in the shortcut without having to type anything else in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;Start CUI command:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="2023-12-09_09-46-57.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1302803i21D326BAF7202272/image-size/large?v=v2&amp;amp;px=999" role="button" title="2023-12-09_09-46-57.png" alt="2023-12-09_09-46-57.png" /&gt;&lt;/span&gt;&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-center" image-alt="2023-12-09_09-49-30.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1302804i0517EC6B51DFEECE/image-size/large?v=v2&amp;amp;px=999" role="button" title="2023-12-09_09-49-30.png" alt="2023-12-09_09-49-30.png" /&gt;&lt;/span&gt;&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-center" image-alt="2023-12-09_09-50-52.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1302805i0EF3660041585CF4/image-size/large?v=v2&amp;amp;px=999" role="button" title="2023-12-09_09-50-52.png" alt="2023-12-09_09-50-52.png" /&gt;&lt;/span&gt;&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-center" image-alt="2023-12-09_09-51-52.png" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1302806i190DB7DDE7B98F24/image-size/large?v=v2&amp;amp;px=999" role="button" title="2023-12-09_09-51-52.png" alt="2023-12-09_09-51-52.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now select polyline and use Option+Command+S shortcut to Spline it.&lt;/P&gt;&lt;P&gt;The limitation is that only one polyline object can be selected at a time.&lt;/P&gt;</description>
      <pubDate>Sat, 09 Dec 2023 06:57:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-for-mac-forum/keyboard-shortcut-for-right-click-menu-items/m-p/12429967#M47441</guid>
      <dc:creator>maxim_k</dc:creator>
      <dc:date>2023-12-09T06:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Keyboard shortcut for right-click menu items?</title>
      <link>https://forums.autodesk.com/t5/autocad-for-mac-forum/keyboard-shortcut-for-right-click-menu-items/m-p/12433348#M47459</link>
      <description>&lt;P&gt;Thanks Maxim!&lt;/P&gt;</description>
      <pubDate>Mon, 11 Dec 2023 15:02:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-for-mac-forum/keyboard-shortcut-for-right-click-menu-items/m-p/12433348#M47459</guid>
      <dc:creator>bretwieseler</dc:creator>
      <dc:date>2023-12-11T15:02:16Z</dc:date>
    </item>
  </channel>
</rss>

