<?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: Inverse selection in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/inverse-selection/m-p/12294189#M23176</link>
    <description>Explain in more detail an example of your intentions in a DWG file.</description>
    <pubDate>Mon, 09 Oct 2023 15:54:08 GMT</pubDate>
    <dc:creator>pendean</dc:creator>
    <dc:date>2023-10-09T15:54:08Z</dc:date>
    <item>
      <title>Inverse selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/inverse-selection/m-p/12294183#M23175</link>
      <description>&lt;P&gt;Is it possible to do a inverse selection into autocad?&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 15:51:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/inverse-selection/m-p/12294183#M23175</guid>
      <dc:creator>kibitotato</dc:creator>
      <dc:date>2023-10-09T15:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: Inverse selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/inverse-selection/m-p/12294189#M23176</link>
      <description>Explain in more detail an example of your intentions in a DWG file.</description>
      <pubDate>Mon, 09 Oct 2023 15:54:08 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/inverse-selection/m-p/12294189#M23176</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2023-10-09T15:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: Inverse selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/inverse-selection/m-p/12294197#M23177</link>
      <description>Not possible to do it into a dwg file.&lt;BR /&gt;FOr example I have a superbig drawging with lines plines blocks arrays....&lt;BR /&gt;I want to select a part of the drawing ant then, invert the selection and have into the selection the other part of the drawing...</description>
      <pubDate>Mon, 09 Oct 2023 15:57:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/inverse-selection/m-p/12294197#M23177</guid>
      <dc:creator>kibitotato</dc:creator>
      <dc:date>2023-10-09T15:57:56Z</dc:date>
    </item>
    <item>
      <title>Re: Inverse selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/inverse-selection/m-p/12294267#M23178</link>
      <description>&lt;P&gt;Answered awhile back&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/invert-selection-set/m-p/6594490#" target="_blank"&gt;https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/invert-selection-set/m-p/6594490#&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 16:27:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/inverse-selection/m-p/12294267#M23178</guid>
      <dc:creator>paullimapa</dc:creator>
      <dc:date>2023-10-09T16:27:10Z</dc:date>
    </item>
    <item>
      <title>Re: Inverse selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/inverse-selection/m-p/12294269#M23179</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3476712"&gt;@kibitotato&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;....&lt;BR /&gt;I want to select a part of the drawing ant then, invert the selection and have into the selection the other part of the drawing...&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Use &lt;STRONG&gt;SELECT&lt;/STRONG&gt; and pick the first part.&amp;nbsp; ESCape a couple of times to clear that selection, which will then be the "Previous" selection.&amp;nbsp; Then start whatever command you intend, type &lt;STRONG&gt;ALL&lt;/STRONG&gt; to select everything, then type &lt;STRONG&gt;R&lt;/STRONG&gt; for &lt;STRONG&gt;R&lt;/STRONG&gt;emove and &lt;STRONG&gt;P&lt;/STRONG&gt; for &lt;STRONG&gt;P&lt;/STRONG&gt;revious to &lt;EM&gt;take the previous selection out of&lt;/EM&gt; the current [everything] selection, so you're left with the inverse selection -- ENTER to finalize that and proceed with the command.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 16:27:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/inverse-selection/m-p/12294269#M23179</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2023-10-09T16:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: Inverse selection</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/inverse-selection/m-p/12294343#M23180</link>
      <description>&lt;P&gt;Possibly you can use the Group command to help.&lt;/P&gt;
&lt;P&gt;Make a Group of objects that you have currently selected. Then SelectAll and Unselect your Group. Then Ungroup. Easy.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Oct 2023 17:08:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/inverse-selection/m-p/12294343#M23180</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2023-10-09T17:08:37Z</dc:date>
    </item>
  </channel>
</rss>

