<?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: Break at Point in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/7553726#M202288</link>
    <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3324873"&gt;@gotphish001&lt;/a&gt;&amp;nbsp;is correct that the menu icon calls a command macro that feeds in some options to the BREAK command, but does not call a defined command that itself includes those options, so when you hit Enter to recall, what is recalled is just the "root" BREAK command.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can define a specific command &lt;EM&gt;name&lt;/EM&gt;&amp;nbsp; that does the same thing, such as this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun C:BF1 (); = Break with First option at 1 point
  (command "_.break" pause "_first" pause "@")
)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and then make &lt;EM&gt;that&lt;/EM&gt;&amp;nbsp; the command that is called by that button, rather than the macro of the basic command with First option and @.&amp;nbsp;&amp;nbsp;In the CUI Editor:&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="BreakAtPoint.PNG" style="width: 673px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/427750i454645982C936F7E/image-size/large?v=v2&amp;amp;px=999" role="button" title="BreakAtPoint.PNG" alt="BreakAtPoint.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then, when you hit Enter after using it, it's the BF1 command that is recalled, not just the BREAK command.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Make sure that command gets loaded in every drawing by acaddoc.lsp, or you'll get an unknown-command error when you pick on that menu icon.&lt;/P&gt;</description>
    <pubDate>Fri, 17 Nov 2017 18:11:00 GMT</pubDate>
    <dc:creator>Kent1Cooper</dc:creator>
    <dc:date>2017-11-17T18:11:00Z</dc:date>
    <item>
      <title>Break at Point</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/7553581#M202285</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please see attached screencast.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have the same problem everytime I want to break multiple lines. I use the "Break at Point" tool.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The first time; it breaks the line at the point that I select.&lt;/P&gt;
&lt;P&gt;I then press Enter to start the command again.&lt;/P&gt;
&lt;P&gt;The second time; it breaks the line at the point that I select and also shortens the line.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Am I doing something wrong?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I select the Break at Point tool fresh each time, then it works, but this is a slower way of doing things.&lt;/P&gt;
&lt;DIV id="ab8b3a38-4a07-4588-b8ec-46b3cf07ace0" class="myscreencast-iframe iframe-container active-myscreencast"&gt;&lt;IFRAME src="https://screencast.autodesk.com/Embed/Timeline/ab8b3a38-4a07-4588-b8ec-46b3cf07ace0" scrolling="no" allowfullscreen="allowfullscreen" webkitallowfullscreen="webkitallowfullscreen" style="display: inline;" width="640" height="620" frameborder="0"&gt;&lt;/IFRAME&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 17 Nov 2017 17:08:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/7553581#M202285</guid>
      <dc:creator>carl.coghill</dc:creator>
      <dc:date>2017-11-17T17:08:12Z</dc:date>
    </item>
    <item>
      <title>Re: Break at Point</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/7553609#M202286</link>
      <description>&lt;P&gt;That's how it functions unfortunately. I'm assuming the break at point just runs the break command with a sub-option, so when you hit return to redo the command it only does the break command and doesn't jump to the sub-option.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use break at point often so I added a button for it on the quick access toolbar. The button functions the same if I use it and then hit enter it only runs the break command on the second use. Pressing the button each time is still faster for me than the alternative of opening the modify tab then opening the break command drop down to select the break at point tool.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Before I added the button I would use the break command then press F to pick first point. I would then just pick the first and second points as the same point at the location I wanted to break the line. You could do it that way if you didn't want to mouse click a button and only use keyboard shortcuts.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You could also make a keyboard shortcut for the break at point command and use that each time. I don't think it has a default shortcut.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 17:22:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/7553609#M202286</guid>
      <dc:creator>gotphish001</dc:creator>
      <dc:date>2017-11-17T17:22:52Z</dc:date>
    </item>
    <item>
      <title>Re: Break at Point</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/7553655#M202287</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;the only way to work successfully with BREAK at point ( ribbon command ) is to select it always from ribbon every time you want to use.you may need a macro that could serve your issue.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 17:41:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/7553655#M202287</guid>
      <dc:creator>imadHabash</dc:creator>
      <dc:date>2017-11-17T17:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: Break at Point</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/7553726#M202288</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3324873"&gt;@gotphish001&lt;/a&gt;&amp;nbsp;is correct that the menu icon calls a command macro that feeds in some options to the BREAK command, but does not call a defined command that itself includes those options, so when you hit Enter to recall, what is recalled is just the "root" BREAK command.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can define a specific command &lt;EM&gt;name&lt;/EM&gt;&amp;nbsp; that does the same thing, such as this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun C:BF1 (); = Break with First option at 1 point
  (command "_.break" pause "_first" pause "@")
)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and then make &lt;EM&gt;that&lt;/EM&gt;&amp;nbsp; the command that is called by that button, rather than the macro of the basic command with First option and @.&amp;nbsp;&amp;nbsp;In the CUI Editor:&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="BreakAtPoint.PNG" style="width: 673px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/427750i454645982C936F7E/image-size/large?v=v2&amp;amp;px=999" role="button" title="BreakAtPoint.PNG" alt="BreakAtPoint.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then, when you hit Enter after using it, it's the BF1 command that is recalled, not just the BREAK command.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Make sure that command gets loaded in every drawing by acaddoc.lsp, or you'll get an unknown-command error when you pick on that menu icon.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 18:11:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/7553726#M202288</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2017-11-17T18:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: Break at Point</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/7553901#M202289</link>
      <description>&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;BREAK AT POINT TOOL DON'T HAVE COMMAND.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And Break At Point is a Section of Break command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So that, if you press enter, Break command will goes to active.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 19:11:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/7553901#M202289</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-17T19:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: Break at Point</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/7554207#M202290</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;@Anonymous wrote:&lt;BR /&gt;
&lt;P&gt;....&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BREAK AT POINT TOOL DON'T HAVE COMMAND. .... So that, if you press enter, Break command will goes to active.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Exactly, as already pointed out twice.&amp;nbsp; My suggestion was to &lt;EM&gt;make&lt;/EM&gt;&amp;nbsp; the icon in the ribbon have a special-purpose Break command, so that if you press Enter, that special command will be what is recalled.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 21:04:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/7554207#M202290</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2017-11-17T21:04:38Z</dc:date>
    </item>
    <item>
      <title>Re: Break at Point</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/8006192#M202291</link>
      <description>&lt;P&gt;Excellent. It works. But ¿how can i put the lisp permanent, so i can not have to paste the command in every session?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you a lot!&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt;wrote:&lt;BR /&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3324873"&gt;@gotphish001&lt;/a&gt;&amp;nbsp;is correct that the menu icon calls a command macro that feeds in some options to the BREAK command, but does not call a defined command that itself includes those options, so when you hit Enter to recall, what is recalled is just the "root" BREAK command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can define a specific command &lt;EM&gt;name&lt;/EM&gt;&amp;nbsp; that does the same thing, such as this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;(defun C:BF1 (); = Break with First option at 1 point
  (command "_.break" pause "_first" pause "@")
)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and then make &lt;EM&gt;that&lt;/EM&gt;@&amp;nbsp; the command that is called by that button, rather than the macro of the basic command with First option and @.&amp;nbsp;&amp;nbsp;In the CUI Editor:&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="BreakAtPoint.PNG" style="width: 673px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/427750i454645982C936F7E/image-size/large?v=v2&amp;amp;px=999" role="button" title="BreakAtPoint.PNG" alt="BreakAtPoint.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then, when you hit Enter after using it, it's the BF1 command that is recalled, not just the BREAK command.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Make sure that command gets loaded in every drawing by acaddoc.lsp, or you'll get an unknown-command error when you pick on that menu icon.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 May 2018 14:59:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/8006192#M202291</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-05-16T14:59:43Z</dc:date>
    </item>
    <item>
      <title>Re: Break at Point</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/8141291#M202292</link>
      <description>&lt;P&gt;At the CUI simply just&amp;nbsp;edit the 'Break at point' command macro:&lt;BR /&gt;put an asterisk &amp;gt;&amp;gt;&amp;nbsp;&amp;nbsp; *&amp;nbsp;&amp;nbsp; &amp;lt;&amp;lt;&amp;nbsp;at the&amp;nbsp;front, so it will stay in the command:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;^C^C_break \_f \@ &amp;nbsp; &amp;gt;&amp;gt;&amp;nbsp; &amp;nbsp;*^C^C_break \_f \@&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can exit with ESC.&lt;/P&gt;</description>
      <pubDate>Thu, 19 Jul 2018 13:18:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/8141291#M202292</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-07-19T13:18:21Z</dc:date>
    </item>
    <item>
      <title>Re: Break at Point</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/8592286#M202293</link>
      <description>&lt;TABLE data-tab-size="8"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;(defun c:BAP (/ entity point)&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;TABLE data-tab-size="8"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;(setq entity (entsel))&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;TABLE data-tab-size="8"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;(setq point (getpoint))&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;TABLE data-tab-size="8"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;TABLE data-tab-size="8"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;(command "_.break" entity "_F" "_non" point "_non" point)&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;TABLE data-tab-size="8"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;)&lt;/P&gt;
&lt;P&gt;I use this most of the time.&lt;/P&gt;</description>
      <pubDate>Wed, 13 Feb 2019 10:34:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/8592286#M202293</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-02-13T10:34:45Z</dc:date>
    </item>
    <item>
      <title>Re: Break at Point</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/8765435#M202294</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;Thanks OP for the similar question. Thanks &lt;SPAN class="UserName lia-user-name lia-user-rank-Observer lia-component-message-view-widget-author-username"&gt; &lt;A id="link_12" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7002273" target="_self"&gt;&lt;SPAN class=""&gt;portabl3lapy&lt;/SPAN&gt;&lt;/A&gt;&lt;/SPAN&gt; for the lisp! I like it, but I kind of like the idea of placing a POINT object at the location of the break point. I am only familiar with lisp through using other's routines, but it seems that this would be a simple addition to your lisp. Do you know how this could be added, by chance?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Michael&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2019 19:58:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/8765435#M202294</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-01T19:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Break at Point</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/8765595#M202295</link>
      <description>&lt;P&gt;Nevermind, I figured it out.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just added the following:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE data-tab-size="8"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;(defun c:BAP (/ entity point)&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;TABLE data-tab-size="8"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;(setq entity (entsel))&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;TABLE data-tab-size="8"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;(setq point (getpoint))&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;TABLE data-tab-size="8"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;TABLE data-tab-size="8"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;(command "_.break" entity "_F" "_non" point "_non" point)&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;TABLE data-tab-size="8"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;(command "_.point" point)&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;TABLE data-tab-size="8"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again for the lisp!&lt;/P&gt;
&lt;P&gt;Michael&lt;/P&gt;</description>
      <pubDate>Wed, 01 May 2019 21:33:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/break-at-point/m-p/8765595#M202295</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-05-01T21:33:26Z</dc:date>
    </item>
  </channel>
</rss>

