<?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 Select multiple objects at once instead of one at a time in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-multiple-objects-at-once-instead-of-one-at-a-time/m-p/11956627#M30062</link>
    <description>&lt;P&gt;Hi!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've found this useful lisp to copy elements into the current drawing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(defun c:nc ( / nc-cmd )&lt;BR /&gt;(setq nc-cmd (command "_.ncopy" "\\" (command) ))&lt;BR /&gt;(cond&lt;BR /&gt;((= nc-cmd nil) (prompt "\nMissed.. Try again!\n")(c:nc))&lt;BR /&gt;);cond&lt;BR /&gt;(princ)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The thing is that I have to select one object at a time..&lt;/P&gt;&lt;P&gt;Is there a way to select with the mouse window selection all object that we want and then execute the same command for each object? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many many thanks in advance &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 11 May 2023 10:14:24 GMT</pubDate>
    <dc:creator>cool.stuff</dc:creator>
    <dc:date>2023-05-11T10:14:24Z</dc:date>
    <item>
      <title>Select multiple objects at once instead of one at a time</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-multiple-objects-at-once-instead-of-one-at-a-time/m-p/11956627#M30062</link>
      <description>&lt;P&gt;Hi!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've found this useful lisp to copy elements into the current drawing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(defun c:nc ( / nc-cmd )&lt;BR /&gt;(setq nc-cmd (command "_.ncopy" "\\" (command) ))&lt;BR /&gt;(cond&lt;BR /&gt;((= nc-cmd nil) (prompt "\nMissed.. Try again!\n")(c:nc))&lt;BR /&gt;);cond&lt;BR /&gt;(princ)&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The thing is that I have to select one object at a time..&lt;/P&gt;&lt;P&gt;Is there a way to select with the mouse window selection all object that we want and then execute the same command for each object? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many many thanks in advance &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2023 10:14:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-multiple-objects-at-once-instead-of-one-at-a-time/m-p/11956627#M30062</guid>
      <dc:creator>cool.stuff</dc:creator>
      <dc:date>2023-05-11T10:14:24Z</dc:date>
    </item>
    <item>
      <title>Re: Select multiple objects at once instead of one at a time</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-multiple-objects-at-once-instead-of-one-at-a-time/m-p/11957645#M30063</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5952516"&gt;@cool.stuff&lt;/a&gt;&amp;nbsp; hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;First let understand what this lisp do...it copy\import object from block or xrefs into your current drawings.&lt;/P&gt;&lt;P&gt;because select objects knows to select only main objects (and not nested objects) the nature of selecting nested objects is by (nentsel) function which is done by pick one by one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i think there is a way to do want but it is not worth the effort of coding. instead you can just move/copy the block nearby, explode it and take what you need - makes sense?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Moshe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2023 16:40:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-multiple-objects-at-once-instead-of-one-at-a-time/m-p/11957645#M30063</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2023-05-11T16:40:11Z</dc:date>
    </item>
    <item>
      <title>Re: Select multiple objects at once instead of one at a time</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-multiple-objects-at-once-instead-of-one-at-a-time/m-p/11957709#M30064</link>
      <description>&lt;P&gt;Many thanks for your answer &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, I believe in you. Maybe it is not worth it.&lt;/P&gt;&lt;P&gt;As you said, better copy directly instead &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyways, thanks for your time!! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 11 May 2023 17:03:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/select-multiple-objects-at-once-instead-of-one-at-a-time/m-p/11957709#M30064</guid>
      <dc:creator>cool.stuff</dc:creator>
      <dc:date>2023-05-11T17:03:05Z</dc:date>
    </item>
  </channel>
</rss>

