<?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: BURST command in lisp in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13802028#M166478</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;LI-CODE lang="general"&gt;....
(command "BURST" ent "")&lt;/LI-CODE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That has the same problem as in Message 1, because &lt;EM&gt;BURST is not a native AutoCAD command&lt;/EM&gt;, so it cannot be used in an AutoLisp&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt; (command)&lt;/STRONG&gt; &lt;/FONT&gt;function.&amp;nbsp; The suggestion by&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/62037"&gt;@tramber&lt;/a&gt;&amp;nbsp;in Message 2 is the approach to take.&amp;nbsp; The way to call an AutoLisp-defined command is the&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt; (C:YourCommandName)&lt;/STRONG&gt; &lt;/FONT&gt;approach.&amp;nbsp; And since that cannot take User selection or inputs or variables internally, as native AutoCAD commands in a&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt; (command)&lt;/STRONG&gt; &lt;/FONT&gt;function can, you need to have your selection &lt;EM&gt;already selected/highlighted&lt;/EM&gt;&amp;nbsp;when you call it, which is what the&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt; (sssetfirst)&lt;/STRONG&gt; &lt;/FONT&gt;function does.&amp;nbsp; [And it can be a selection of &lt;EM&gt;more than one object&lt;/EM&gt; when you need that.]&lt;/P&gt;</description>
    <pubDate>Tue, 09 Sep 2025 02:18:56 GMT</pubDate>
    <dc:creator>Kent1Cooper</dc:creator>
    <dc:date>2025-09-09T02:18:56Z</dc:date>
    <item>
      <title>BURST command in lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13800992#M166465</link>
      <description>&lt;P&gt;I have this line in my script :&lt;/P&gt;&lt;P&gt;(command "_.BURST" (ssadd ent) "")&lt;/P&gt;&lt;P&gt;I'm getting an error "Unknown command"&lt;/P&gt;&lt;P&gt;Why???&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 12:30:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13800992#M166465</guid>
      <dc:creator>davidEPN6Z</dc:creator>
      <dc:date>2025-09-08T12:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: BURST command in lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13801039#M166466</link>
      <description>&lt;PRE class="bbcode_code"&gt;  (sssetfirst nil &lt;SPAN&gt;&amp;nbsp;(ssadd ent)&lt;/SPAN&gt;) ;makes your selection both gripped and selected. 
  (c:burst)&lt;/PRE&gt;
&lt;P&gt;To me, that's the way to send the command.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 12:50:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13801039#M166466</guid>
      <dc:creator>tramber</dc:creator>
      <dc:date>2025-09-08T12:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: BURST command in lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13801051#M166467</link>
      <description>&lt;P&gt;Why? Because it's not a regular built-in command. It's just another LISP function being part of Express tools.&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="eekeeCZ_0-1757336599702.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1568487iAFBB7457BE8A69C2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="eekeeCZ_0-1757336599702.png" alt="eekeeCZ_0-1757336599702.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 13:00:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13801051#M166467</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2025-09-08T13:00:15Z</dc:date>
    </item>
    <item>
      <title>Re: BURST command in lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13801097#M166468</link>
      <description>&lt;P&gt;a&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(or c:burst(load "burst.lsp"))&lt;/P&gt;
&lt;P&gt;Before ?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 13:22:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13801097#M166468</guid>
      <dc:creator>tramber</dc:creator>
      <dc:date>2025-09-08T13:22:49Z</dc:date>
    </item>
    <item>
      <title>Re: BURST command in lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13801875#M166473</link>
      <description>&lt;P&gt;BURST is an Express Tools command written in AutoLISP. To call it you would need to use&lt;/P&gt;&lt;P&gt;(c:burst)&lt;/P&gt;&lt;P&gt;If you are feeding items from a selection set into it as part of your script you will need to dig down into the AutoLISP file itself.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Sep 2025 23:02:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13801875#M166473</guid>
      <dc:creator>ryanatkins49056</dc:creator>
      <dc:date>2025-09-08T23:02:54Z</dc:date>
    </item>
    <item>
      <title>Re: BURST command in lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13801990#M166477</link>
      <description>&lt;P&gt;Something like this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(prompt "\nSelect object\n")
(setq ent (ssget "_+.:E:S"))
(command "BURST" ent "")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Sep 2025 01:10:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13801990#M166477</guid>
      <dc:creator>Sea-Haven</dc:creator>
      <dc:date>2025-09-09T01:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: BURST command in lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13802028#M166478</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/6254908"&gt;@Sea-Haven&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;LI-CODE lang="general"&gt;....
(command "BURST" ent "")&lt;/LI-CODE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That has the same problem as in Message 1, because &lt;EM&gt;BURST is not a native AutoCAD command&lt;/EM&gt;, so it cannot be used in an AutoLisp&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt; (command)&lt;/STRONG&gt; &lt;/FONT&gt;function.&amp;nbsp; The suggestion by&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/62037"&gt;@tramber&lt;/a&gt;&amp;nbsp;in Message 2 is the approach to take.&amp;nbsp; The way to call an AutoLisp-defined command is the&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt; (C:YourCommandName)&lt;/STRONG&gt; &lt;/FONT&gt;approach.&amp;nbsp; And since that cannot take User selection or inputs or variables internally, as native AutoCAD commands in a&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt; (command)&lt;/STRONG&gt; &lt;/FONT&gt;function can, you need to have your selection &lt;EM&gt;already selected/highlighted&lt;/EM&gt;&amp;nbsp;when you call it, which is what the&lt;FONT face="courier new,courier"&gt;&lt;STRONG&gt; (sssetfirst)&lt;/STRONG&gt; &lt;/FONT&gt;function does.&amp;nbsp; [And it can be a selection of &lt;EM&gt;more than one object&lt;/EM&gt; when you need that.]&lt;/P&gt;</description>
      <pubDate>Tue, 09 Sep 2025 02:18:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13802028#M166478</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2025-09-09T02:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: BURST command in lisp</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13802348#M166483</link>
      <description>&lt;P&gt;Thank you all. I used tramber approch and its working. Thanks tramber/&lt;/P&gt;</description>
      <pubDate>Tue, 09 Sep 2025 07:23:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/burst-command-in-lisp/m-p/13802348#M166483</guid>
      <dc:creator>davidEPN6Z</dc:creator>
      <dc:date>2025-09-09T07:23:03Z</dc:date>
    </item>
  </channel>
</rss>

