<?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: Block not visible util inserted when explode option is checked in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/block-not-visible-util-inserted-when-explode-option-is-checked/m-p/6796120#M244747</link>
    <description>&lt;P&gt;Been that way since the beginning ... most are used to it.&lt;/P&gt;</description>
    <pubDate>Tue, 10 Jan 2017 17:59:20 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-01-10T17:59:20Z</dc:date>
    <item>
      <title>Block not visible util inserted when explode option is checked</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/block-not-visible-util-inserted-when-explode-option-is-checked/m-p/6795911#M244745</link>
      <description>&lt;P&gt;Maybe I have never noticed this because 99% of the time I insert blocks, I don't have explode checked, but is there a setting to make the contents of the file you're inserting visible when you do have explode checked?&amp;nbsp; I tried it on all three computers in the office (all vanilla acad 2016) and in all cases, whatever I was inserting was invisible until I actually inserted it.&amp;nbsp; Annoying...&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jan 2017 16:55:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/block-not-visible-util-inserted-when-explode-option-is-checked/m-p/6795911#M244745</guid>
      <dc:creator>mpa-la</dc:creator>
      <dc:date>2017-01-10T16:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: Block not visible util inserted when explode option is checked</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/block-not-visible-util-inserted-when-explode-option-is-checked/m-p/6796106#M244746</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/56278"&gt;@mpa-la&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;...&amp;nbsp;is there a setting to make the contents of the file you're inserting visible when you do have explode checked?&amp;nbsp; ....&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I don't believe there is.&amp;nbsp; But you can use a dedicated command definition to Insert [with dragging, and all options, etc.] and &lt;EM&gt;then&lt;/EM&gt; Explode what was just Inserted:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;(defun C:IX (); = Insert &amp;amp; eXplode
  (initdia)
  (command "_.insert")
  (while (&amp;gt; (getvar 'cmdactive) 0) (command pause))
  (command "_.explode" "_last")
  (princ)
)&lt;/PRE&gt;
&lt;P&gt;EDIT:&amp;nbsp; Needs to force the Explode option off first, in case&amp;nbsp;-- let me work on that....&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jan 2017 17:58:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/block-not-visible-util-inserted-when-explode-option-is-checked/m-p/6796106#M244746</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2017-01-10T17:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Block not visible util inserted when explode option is checked</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/block-not-visible-util-inserted-when-explode-option-is-checked/m-p/6796120#M244747</link>
      <description>&lt;P&gt;Been that way since the beginning ... most are used to it.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jan 2017 17:59:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/block-not-visible-util-inserted-when-explode-option-is-checked/m-p/6796120#M244747</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-01-10T17:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: Block not visible util inserted when explode option is checked</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/block-not-visible-util-inserted-when-explode-option-is-checked/m-p/6796197#M244748</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/69526"&gt;@Kent1Cooper&lt;/a&gt; wrote:&lt;/BLOCKQUOTE&gt;
&lt;P&gt;EDIT:&amp;nbsp; Needs to force the Explode option off first, in case&amp;nbsp;-- let me work on that....&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;
&lt;P&gt;Thanks for the accepted-solution marking, but I find if you have the Explode button set from before, the can't-see-it-as-you-Insert problem remains.&amp;nbsp; I haven't found a way to turn it off in a routine.&amp;nbsp; It doesn't seem to be stored in any System Variable that I can find.&amp;nbsp; If there's a way to invoke Alt+D in a routine while the dialog box is up, that would &lt;EM&gt;toggle&lt;/EM&gt; the Explode button, but of course it would sometimes turn it &lt;EM&gt;on&lt;/EM&gt; rather than off.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Does anyone know where/how that setting is stored, and therefore whether it can be forced off in AutoLisp or a command macro or something?&amp;nbsp; I tried some Searching, and didn't find anything.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The whole thing could be done with a &lt;EM&gt;macro&lt;/EM&gt;, avoiding the problem, but then you lose other benefits of the dialog box, for example you'd have to type in [or &lt;EM&gt;build&lt;/EM&gt; in -- maybe that's workable in your situation] the Block name, and couldn't pull down the list to pick it.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Jan 2017 18:35:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/block-not-visible-util-inserted-when-explode-option-is-checked/m-p/6796197#M244748</guid>
      <dc:creator>Kent1Cooper</dc:creator>
      <dc:date>2017-01-10T18:35:07Z</dc:date>
    </item>
  </channel>
</rss>

