<?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: SCRIPT WRITING - SELECT BLOCK WITH AN X SCALE=1 in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/script-writing-select-block-with-an-x-scale-1/m-p/5672783#M325498</link>
    <description>&lt;P&gt;You might want to show&amp;nbsp;a direction...&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.lee-mac.com/ssget.html" target="_blank"&gt;http://www.lee-mac.com/ssget.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-SPOILER&gt;
&lt;PRE&gt;(defun c:SelBlkX&amp;lt;&amp;gt;1 ( / ss)
  (if (setq ss (ssget "_X" '((0 . "INSERT") (-4 . "&amp;lt;&amp;gt;") (41 . 1))))
    (sssetfirst nil ss))
  (princ)
)&lt;/PRE&gt;
&lt;/LI-SPOILER&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 10 Jun 2015 22:07:26 GMT</pubDate>
    <dc:creator>ВeekeeCZ</dc:creator>
    <dc:date>2015-06-10T22:07:26Z</dc:date>
    <item>
      <title>SCRIPT WRITING - SELECT BLOCK WITH AN X SCALE=1</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/script-writing-select-block-with-an-x-scale-1/m-p/5672505#M325493</link>
      <description>&lt;P&gt;I wish to create a command within&amp;nbsp;a script that will select ALL block references&amp;nbsp;with a Scale X = 1.&amp;nbsp; Typically I use the QSELECT command to achieve this and was wondering if it'd be possible to code.&amp;nbsp; Any direction would be greatly appreciated.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2015 19:01:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/script-writing-select-block-with-an-x-scale-1/m-p/5672505#M325493</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-06-10T19:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: SCRIPT WRITING - SELECT BLOCK WITH AN X SCALE=1</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/script-writing-select-block-with-an-x-scale-1/m-p/5672652#M325494</link>
      <description>A script just mimics what you can type at the commandline without using pop-ups. You will need to add a little more programming with some LISP.&lt;BR /&gt;&lt;BR /&gt;Are these standard blocks or 'dynamic' blocks?</description>
      <pubDate>Wed, 10 Jun 2015 20:28:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/script-writing-select-block-with-an-x-scale-1/m-p/5672652#M325494</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2015-06-10T20:28:36Z</dc:date>
    </item>
    <item>
      <title>Re: SCRIPT WRITING - SELECT BLOCK WITH AN X SCALE=1</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/script-writing-select-block-with-an-x-scale-1/m-p/5672660#M325495</link>
      <description>&lt;P&gt;Thanks for the response.&amp;nbsp; The blocks are standard and NOT dynamic.&amp;nbsp; I'm a little familiar with simple lisp routines, but still may need some direction.&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2015 20:32:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/script-writing-select-block-with-an-x-scale-1/m-p/5672660#M325495</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-06-10T20:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: SCRIPT WRITING - SELECT BLOCK WITH AN X SCALE=1</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/script-writing-select-block-with-an-x-scale-1/m-p/5672727#M325496</link>
      <description>&lt;P&gt;Maybe this code. But remember it selects xrefs as well.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun c:SelBlkX1 ( / ss)
  (if (setq ss (ssget "_X" (list '(0 . "INSERT") '(41 . 1))))
    (sssetfirst nil ss))
  (princ)
)&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2015 21:26:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/script-writing-select-block-with-an-x-scale-1/m-p/5672727#M325496</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2015-06-10T21:26:20Z</dc:date>
    </item>
    <item>
      <title>Re: SCRIPT WRITING - SELECT BLOCK WITH AN X SCALE=1</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/script-writing-select-block-with-an-x-scale-1/m-p/5672770#M325497</link>
      <description>&lt;P&gt;Thanks B.&amp;nbsp; That worked awesome!&amp;nbsp;Maybe you can help me with just one more.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I&amp;nbsp;need a different routine to select&amp;nbsp;standard blocks with an X SCALE &lt;STRONG&gt;NOT EQUAL TO&lt;/STRONG&gt; 1?&amp;nbsp; Then from there I need to&amp;nbsp;change selected blocks&amp;nbsp;X SCALE TO 1 within the properties.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any direction is greatly apprecitated!&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2015 21:54:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/script-writing-select-block-with-an-x-scale-1/m-p/5672770#M325497</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-06-10T21:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: SCRIPT WRITING - SELECT BLOCK WITH AN X SCALE=1</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/script-writing-select-block-with-an-x-scale-1/m-p/5672783#M325498</link>
      <description>&lt;P&gt;You might want to show&amp;nbsp;a direction...&lt;/P&gt;
&lt;P&gt;&lt;A href="http://www.lee-mac.com/ssget.html" target="_blank"&gt;http://www.lee-mac.com/ssget.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-SPOILER&gt;
&lt;PRE&gt;(defun c:SelBlkX&amp;lt;&amp;gt;1 ( / ss)
  (if (setq ss (ssget "_X" '((0 . "INSERT") (-4 . "&amp;lt;&amp;gt;") (41 . 1))))
    (sssetfirst nil ss))
  (princ)
)&lt;/PRE&gt;
&lt;/LI-SPOILER&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jun 2015 22:07:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/script-writing-select-block-with-an-x-scale-1/m-p/5672783#M325498</guid>
      <dc:creator>ВeekeeCZ</dc:creator>
      <dc:date>2015-06-10T22:07:26Z</dc:date>
    </item>
  </channel>
</rss>

