<?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: &amp;quot;Break at Point&amp;quot; command shortcut in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10594767#M175545</link>
    <description>@Anonymous if you are running a current version of any variant of AutoCAD, that command is built-in now and called BREAKATPOINT command, look it up in HELP. I abbreviated it to B1 for me which you can do in the PGP file like you have been for 30-years now.&lt;BR /&gt;&lt;BR /&gt;</description>
    <pubDate>Thu, 02 Sep 2021 20:14:40 GMT</pubDate>
    <dc:creator>pendean</dc:creator>
    <dc:date>2021-09-02T20:14:40Z</dc:date>
    <item>
      <title>"Break at Point" command shortcut</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/8085842#M175536</link>
      <description>&lt;P&gt;Is there a keyboard shortcut for "Break at Point"?&amp;nbsp; Can I reassign "br" from "Break" to "Break at Point"?&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jun 2018 15:52:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/8085842#M175536</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-06-22T15:52:47Z</dc:date>
    </item>
    <item>
      <title>Re: "Break at Point" command shortcut</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/8085873#M175537</link>
      <description>&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/autocad-forum/what-is-the-alias-short-cut-key-for-break-at-point/td-p/5907972" target="_blank"&gt;https://forums.autodesk.com/t5/autocad-forum/what-is-the-alias-short-cut-key-for-break-at-point/td-p/5907972&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jun 2018 16:01:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/8085873#M175537</guid>
      <dc:creator>Patchy</dc:creator>
      <dc:date>2018-06-22T16:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: "Break at Point" command shortcut</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/8085887#M175538</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Is there a keyboard shortcut for "Break at Point"?&amp;nbsp; Can I reassign "br" from "Break" to "Break at Point"?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Here's what I use as a command name to specifically do that:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(defun C:&lt;FONT color="#000000"&gt;&lt;STRONG&gt;BF1&lt;/STRONG&gt;&lt;/FONT&gt; (); = &lt;FONT color="#000000"&gt;&lt;STRONG&gt;B&lt;/STRONG&gt;&lt;/FONT&gt;reak with &lt;FONT color="#000000"&gt;&lt;STRONG&gt;F&lt;/STRONG&gt;&lt;/FONT&gt;irst option at &lt;FONT color="#000000"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/FONT&gt; point&lt;BR /&gt;&amp;nbsp; (command "_.break" pause "_first" pause "@")&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could change that &lt;FONT color="#000000"&gt;&lt;STRONG&gt;BF1&lt;/STRONG&gt;&lt;/FONT&gt; command name to &lt;FONT color="#000000"&gt;&lt;STRONG&gt;BR&lt;/STRONG&gt;&lt;/FONT&gt;, if you prefer, and remove BR as the standard alias for Break.&amp;nbsp; The description at the icon in the Modify area of the Ribbon is a little misleading, in that it indicates BREAK as the command name but it doesn't just start a BREAK command, but incorporates options.&amp;nbsp; And it's also misleading in that the wording "Breaks the selected object at a single point" could be interpreted to mean it Breaks the object&amp;nbsp;&lt;EM&gt;at the point where you select it&lt;/EM&gt;&amp;nbsp; [and a routine could easily be made to do that if desired*],&amp;nbsp;when it does ask for a point to Break at&amp;nbsp;&lt;EM&gt;after&lt;/EM&gt;&amp;nbsp; selecting.&amp;nbsp; That's why I prefer the command name with the &lt;FONT color="#000000"&gt;&lt;STRONG&gt;F&lt;/STRONG&gt;&lt;/FONT&gt; in it, for the &lt;STRONG&gt;&lt;FONT color="#000000"&gt;F&lt;/FONT&gt;&lt;/STRONG&gt;irst option that it invokes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;* Like this:&lt;BR /&gt;(defun C:&lt;FONT color="#000000"&gt;&lt;STRONG&gt;B1S&lt;/STRONG&gt;&lt;/FONT&gt; (); = &lt;FONT color="#000000"&gt;&lt;STRONG&gt;B&lt;/STRONG&gt;&lt;/FONT&gt;reak &lt;FONT color="#000000"&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/FONT&gt; point where &lt;FONT color="#000000"&gt;&lt;STRONG&gt;S&lt;/STRONG&gt;&lt;/FONT&gt;elected&lt;BR /&gt;&amp;nbsp; (command "_.break" pause "@")&lt;BR /&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Jun 2018 16:11:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/8085887#M175538</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2018-06-22T16:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: "Break at Point" command shortcut</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/9187495#M175539</link>
      <description>&lt;P&gt;This solution was also helpful &amp;amp; really easy for me:&amp;nbsp;&lt;A href="https://knowledge.autodesk.com/search-result/caas/sfdcarticles/sfdcarticles/Break-Object-at-Point.html" target="_blank"&gt;https://knowledge.autodesk.com/search-result/caas/sfdcarticles/sfdcarticles/Break-Object-at-Point.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Dec 2019 15:49:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/9187495#M175539</guid>
      <dc:creator>gonecrawfishin</dc:creator>
      <dc:date>2019-12-06T15:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: "Break at Point" command shortcut</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10594530#M175540</link>
      <description>&lt;P&gt;Hello. I realize this post is years old but I wanted to try anyway. Is there a way to save this command in AutoCAD?&lt;/P&gt;</description>
      <pubDate>Thu, 02 Sep 2021 18:33:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10594530#M175540</guid>
      <dc:creator>Design</dc:creator>
      <dc:date>2021-09-02T18:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: "Break at Point" command shortcut</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10594575#M175541</link>
      <description>&lt;P&gt;Yes, paste the code into a text file and save as B1S.lsp&lt;/P&gt;
&lt;P&gt;Put this anywhere, and use APPLOAD command in Autocad, Put it in the startup suit.&lt;/P&gt;
&lt;P&gt;Restart Autocad.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Sep 2021 18:47:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10594575#M175541</guid>
      <dc:creator>Patchy</dc:creator>
      <dc:date>2021-09-02T18:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: "Break at Point" command shortcut</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10594588#M175542</link>
      <description>&lt;P&gt;These days I just type "BR", then select the object, and then type "F" for first, select my break point, and then select the same point again (assuming OSNAP is on).&amp;nbsp; I find that out-of-the-box functionality is as good as a custom .lsp&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Sep 2021 18:57:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10594588#M175542</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-09-02T18:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: "Break at Point" command shortcut</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10594657#M175543</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;These days I just type "BR", then select the object, and then type "F" for first, select my break point, and then select the same point again (assuming OSNAP is on).&amp;nbsp; ....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That's exactly what the &lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;BF1&lt;/FONT&gt; command at the beginning of Message 3 does, saving you the trouble of typing in the F &lt;EM&gt;and&lt;/EM&gt;&amp;nbsp;of re-selecting the same point [and whether or not Osnap is on].&lt;/P&gt;</description>
      <pubDate>Thu, 02 Sep 2021 19:27:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10594657#M175543</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-09-02T19:27:47Z</dc:date>
    </item>
    <item>
      <title>Re: "Break at Point" command shortcut</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10594747#M175544</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3576764"&gt;@Design&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello. I realize this post is years old but I wanted to try anyway. Is there a way to save this command in AutoCAD?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You don't actually specify &lt;EM&gt;which&lt;/EM&gt;&amp;nbsp;of the two commands [&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/558015"&gt;@Patchy&lt;/a&gt;&amp;nbsp;instructs about one of them], but I also have some further elaboration.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can put both command definitions in the same file if you want both.&amp;nbsp; And whether or not you do, you can give such a file any name you want [it doesn't need to be the same as the command name], as long as the filetype ending in &lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;&lt;STRONG&gt;.&lt;/STRONG&gt;lsp&lt;/FONT&gt;.&amp;nbsp; You can use a more descriptive name, so you can tell what it's about when looking at a list of files, such as maybe &lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;Break1pt.lsp&lt;/FONT&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;But&lt;/STRONG&gt; my preferred way, which doesn't use a file named for the command(s), but will have it/them loaded in all drawings automatically, is using the &lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;acaddoc.lsp&lt;/FONT&gt; file.&amp;nbsp; If you don't know whether you already have one, type in:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;(findfile "acaddoc.lsp")&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;If that returns the &lt;EM&gt;file name with a file path&lt;/EM&gt;, open that file in a plain-text editor such as Notepad, paste the code for the command(s) in at the end, and save the file.&amp;nbsp; If the search returns &lt;EM&gt;nil&lt;/EM&gt;, paste the code into Notepad and save it to that file name, preferably in a folder similar to this:&lt;/P&gt;
&lt;P&gt;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;C:\Users\&lt;FONT color="#00CCFF"&gt;&lt;EM&gt;username&lt;/EM&gt;&lt;/FONT&gt;\AppData\Roaming\Autodesk\AutoCAD 20&lt;EM&gt;&lt;FONT color="#00CCFF"&gt;xx&lt;/FONT&gt;&lt;/EM&gt;\R&lt;EM&gt;&lt;FONT color="#00CCFF"&gt;version&lt;/FONT&gt;&lt;/EM&gt;\&lt;EM&gt;&lt;FONT color="#00CCFF"&gt;language&lt;/FONT&gt;&lt;/EM&gt;\&lt;STRONG&gt;support&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;THEN&lt;/STRONG&gt; those command definitions will be loaded automatically into every drawing you start or open.&amp;nbsp; You don't need to restart AutoCAD as you would with entries in the Startup Suite, though if you want to use the command(s) in any drawing you &lt;EM&gt;already have open&lt;/EM&gt; at the time, you would need to either close and re-open the drawing, or use &lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;APPLOAD&lt;/FONT&gt; to navigate to and load that&amp;nbsp;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;acaddoc.lsp&lt;/FONT&gt; file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You will find other things to put into that file, to have them loaded in every drawing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[Things that are put in the Startup Suite "briefcase" in &lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;APPLOAD&lt;/FONT&gt;, according to the &lt;EM&gt;description&lt;/EM&gt; of that at least, are run when AutoCAD is &lt;EM&gt;first started up&lt;/EM&gt; (hence the name, and the reason you need to restart when you add something to it), but &lt;EM&gt;not&lt;/EM&gt; again in every drawing opened.&amp;nbsp; That may not really be true -- it seems at least some things that are individual-drawing-specific may get into all drawings from there, but I'm wary of counting on that, not knowing what determines which ones will behave that way.]&lt;/P&gt;</description>
      <pubDate>Thu, 02 Sep 2021 20:14:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10594747#M175544</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-09-02T20:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: "Break at Point" command shortcut</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10594767#M175545</link>
      <description>@Anonymous if you are running a current version of any variant of AutoCAD, that command is built-in now and called BREAKATPOINT command, look it up in HELP. I abbreviated it to B1 for me which you can do in the PGP file like you have been for 30-years now.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 02 Sep 2021 20:14:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10594767#M175545</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2021-09-02T20:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: "Break at Point" command shortcut</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10594795#M175546</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/37212"&gt;@pendean&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;.... that command is built-in now and called BREAKATPOINT command....&lt;BR /&gt;&lt;BR /&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;.... &lt;EM&gt;if&lt;/EM&gt; the command they're talking about is the one called &lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;BF1&lt;/FONT&gt; in Message 3.&amp;nbsp; If they mean the&amp;nbsp;&lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;B1S&lt;/FONT&gt;&amp;nbsp;command, that's not the same as what &lt;FONT face="arial,helvetica,sans-serif" color="#000000"&gt;BREAKATPOINT&lt;/FONT&gt; does.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Sep 2021 20:27:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10594795#M175546</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2021-09-02T20:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: "Break at Point" command shortcut</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10833970#M175547</link>
      <description>&lt;P&gt;Hello sir Kent,&amp;nbsp; love the BL1 lisp...thank you for the magic! I have a question, well maybe more of a what am I doing wrong checklist:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;I took your lisp file, created a 'Acaddoc.lsp' file, copied your syntax in there.&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;(defun C:BF (); = Break with First option at 1 point&lt;BR /&gt;(command "_.break" pause "_first" pause "@")&lt;BR /&gt;)&lt;/LI&gt;&lt;/UL&gt;&lt;LI&gt;Changed the alias to "BF", not sure if that is the issue.&lt;/LI&gt;&lt;LI&gt;In our AutoCAD Profile --&amp;gt; Files tab --&amp;gt; Support --&amp;gt; I added the location to the&amp;nbsp;'Acaddoc.lsp' file à moved that location to the top of the list.&lt;/LI&gt;&lt;LI&gt;Added the folder to the ‘trusted sites’ area as well.&lt;/LI&gt;&lt;LI&gt;Exported the Profile&lt;/LI&gt;&lt;LI&gt;When I tried to open the profile on another machine it says the “BF” command is unknown.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;What am I doing wrong? Or missing?&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 16:19:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10833970#M175547</guid>
      <dc:creator>james.lord9MVZK</dc:creator>
      <dc:date>2021-12-20T16:19:47Z</dc:date>
    </item>
    <item>
      <title>Re: "Break at Point" command shortcut</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10834011#M175548</link>
      <description>&lt;P&gt;The folder is not reachable on tge other station or it is another folder (same path, but another drive/server)&lt;/P&gt;
&lt;P&gt;.&lt;/P&gt;
&lt;P&gt;Is this profile set to current?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try this at the commandline&lt;/P&gt;
&lt;P&gt;Command: (findfile "acaddoc.lsp")&lt;/P&gt;
&lt;P&gt;is nil? Or if not, Is this the right file?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 20 Dec 2021 16:54:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/quot-break-at-point-quot-command-shortcut/m-p/10834011#M175548</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2021-12-20T16:54:11Z</dc:date>
    </item>
  </channel>
</rss>

