<?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: Correct syntax of SSGET with :E in Visual LISP, AutoLISP and General Customization Forum</title>
    <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/correct-syntax-of-ssget-with-e/m-p/6914136#M122955</link>
    <description>&lt;P&gt;Thanks for your reply, but the :E switch is meant to find all objects within the pickbox. From the Help:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;:E Everything within the cursor's object selection pickbox.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a link if you want to see the entire article:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://docs.autodesk.com/ACD/2011/ENU/filesALR/WS1a9193826455f5ff1a32d8d10ebc6b7ccc-693e.htm" target="_blank"&gt;http://docs.autodesk.com/ACD/2011/ENU/filesALR/WS1a9193826455f5ff1a32d8d10ebc6b7ccc-693e.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 02 Mar 2017 00:35:37 GMT</pubDate>
    <dc:creator>tcorey</dc:creator>
    <dc:date>2017-03-02T00:35:37Z</dc:date>
    <item>
      <title>Correct syntax of SSGET with :E</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/correct-syntax-of-ssget-with-e/m-p/6913964#M122953</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am attempting to use SSGET's "_:E" function, but I have been unable to find an example.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I use (setq obs (ssget "_:E")), the user is asked to pick a point. It correctly finds all objects touched by the pickbox. Sweet, but&amp;nbsp;I want to feed a point variable to the function, not make the user pick.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I use (setq obs (ssget "_:E pt)), I get error: bad point argument&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;and the same if I use (setq obs (ssget pt "_:E"))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks, if you can help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tim&lt;/P&gt;</description>
      <pubDate>Wed, 01 Mar 2017 23:02:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/correct-syntax-of-ssget-with-e/m-p/6913964#M122953</guid>
      <dc:creator>tcorey</dc:creator>
      <dc:date>2017-03-01T23:02:29Z</dc:date>
    </item>
    <item>
      <title>Re: Correct syntax of SSGET with :E</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/correct-syntax-of-ssget-with-e/m-p/6913979#M122954</link>
      <description>&lt;P&gt;You can simply pass a point in ssget as&lt;/P&gt;
&lt;PRE&gt;(ssget pt1); where pt1 is a list of x y and z&lt;/PRE&gt;
&lt;P&gt;but it will only select a single entity that is on top of other entities at that point. To select multiple you need to call other methods. Example with fence&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(ssget "_f" (list (mapcar '- pt1 '(0.01 0 0)) (mapcar '+ pt1 '(0.01 0 0))))&lt;/PRE&gt;</description>
      <pubDate>Wed, 01 Mar 2017 23:10:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/correct-syntax-of-ssget-with-e/m-p/6913979#M122954</guid>
      <dc:creator>Ranjit_Singh</dc:creator>
      <dc:date>2017-03-01T23:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: Correct syntax of SSGET with :E</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/correct-syntax-of-ssget-with-e/m-p/6914136#M122955</link>
      <description>&lt;P&gt;Thanks for your reply, but the :E switch is meant to find all objects within the pickbox. From the Help:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;:E Everything within the cursor's object selection pickbox.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here's a link if you want to see the entire article:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://docs.autodesk.com/ACD/2011/ENU/filesALR/WS1a9193826455f5ff1a32d8d10ebc6b7ccc-693e.htm" target="_blank"&gt;http://docs.autodesk.com/ACD/2011/ENU/filesALR/WS1a9193826455f5ff1a32d8d10ebc6b7ccc-693e.htm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 00:35:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/correct-syntax-of-ssget-with-e/m-p/6914136#M122955</guid>
      <dc:creator>tcorey</dc:creator>
      <dc:date>2017-03-02T00:35:37Z</dc:date>
    </item>
    <item>
      <title>Re: Correct syntax of SSGET with :E</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/correct-syntax-of-ssget-with-e/m-p/6914194#M122956</link>
      <description>&lt;P&gt;You are correct. But as far as I know you cannot pass a point argument to E: ssget method. The method that I pointed out with point is not the same as E: and isn't documented. Never the less, that is the only way, as far as I know where you can pass a single point as an argument.&lt;/P&gt;
&lt;P&gt;You will have to use fence or cp, if you wish to select all objects at a point. I would be very eager to find out if there is anyother ssget way to pass a point argument and select multiple objects that cross at a&amp;nbsp;point.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 01:13:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/correct-syntax-of-ssget-with-e/m-p/6914194#M122956</guid>
      <dc:creator>Ranjit_Singh</dc:creator>
      <dc:date>2017-03-02T01:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: Correct syntax of SSGET with :E</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/correct-syntax-of-ssget-with-e/m-p/6914308#M122957</link>
      <description>&lt;P&gt;Thanks for the clarification. It appears the :E function is only for use when there will be user input, I guess. That's a bummer, but c'est la vie.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am going to follow your advice and use crossing.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 02:41:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/correct-syntax-of-ssget-with-e/m-p/6914308#M122957</guid>
      <dc:creator>tcorey</dc:creator>
      <dc:date>2017-03-02T02:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: Correct syntax of SSGET with :E</title>
      <link>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/correct-syntax-of-ssget-with-e/m-p/6914359#M122958</link>
      <description>&lt;P&gt;You are welcome.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Mar 2017 03:15:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/correct-syntax-of-ssget-with-e/m-p/6914359#M122958</guid>
      <dc:creator>Ranjit_Singh</dc:creator>
      <dc:date>2017-03-02T03:15:15Z</dc:date>
    </item>
  </channel>
</rss>

