<?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: 3d Object in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103406#M31793</link>
    <description>you could also open the library part, add a boolean parameter called "show3d" (or something), and nest all of the 3D script inside an IF/THEN statement:&lt;BR /&gt;
&lt;BR /&gt;
IF show3d THEN&lt;BR /&gt;
  &amp;lt;enter 3d script here&amp;gt;&lt;BR /&gt;
ENDIF&lt;BR /&gt;
&lt;BR /&gt;
Then you have the option of turning the 3D on or off...</description>
    <pubDate>Wed, 28 Feb 2007 13:31:10 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2007-02-28T13:31:10Z</dc:date>
    <item>
      <title>3d Object</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103400#M31787</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Does anyone know if there is a way to get an object to show only in 2d. I've saved some Autocad blocks as objects but don't want to see them in 3d. Any thoughts?&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 26 Feb 2007 20:05:26 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103400#M31787</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-02-26T20:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: 3d Object</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103401#M31788</link>
      <description>Give this a try:&lt;BR /&gt;
&lt;BR /&gt;
For a one-off, explode the object, keep only symbol.&lt;BR /&gt;
&lt;BR /&gt;
For many, delete the 3D script in the object.</description>
      <pubDate>Mon, 26 Feb 2007 21:41:39 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103401#M31788</guid>
      <dc:creator>Dwight</dc:creator>
      <dc:date>2007-02-26T21:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: 3d Object</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103402#M31789</link>
      <description>Thanks Dwight. Deleting the 3d script was the way to go.</description>
      <pubDate>Mon, 26 Feb 2007 22:07:22 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103402#M31789</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-02-26T22:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: 3d Object</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103403#M31790</link>
      <description>Next time you need to do this, you might want to consider to place an END command at the very beginning of the 3D Script.&lt;BR /&gt;
The END command simply finishes the execution of the script.&lt;BR /&gt;
This way you will still have your 3D Scrip in case you need it in the future.&lt;BR /&gt;
Another option is to select everything in the 3D Script and comment them all out.&lt;BR /&gt;
&lt;BR /&gt;
Of course, if you are certain you will never need the 3D in the future, deletion is the best answer.</description>
      <pubDate>Wed, 28 Feb 2007 07:56:54 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103403#M31790</guid>
      <dc:creator>Laszlo Nagy</dc:creator>
      <dc:date>2007-02-28T07:56:54Z</dc:date>
    </item>
    <item>
      <title>Re: 3d Object</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103404#M31791</link>
      <description>Yes, but, for the beginner concerned with not messing up, it would be easier to duplicate the object and delete the 3D script, perhaps calling the new object "symbol only," rather than to start messing with the script as you suggest. &lt;BR /&gt;
&lt;BR /&gt;
There's plenty of ways to make mistakes with your approach if the user, as our poster most certainly is, NOT an expert user.</description>
      <pubDate>Wed, 28 Feb 2007 08:06:32 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103404#M31791</guid>
      <dc:creator>Dwight</dc:creator>
      <dc:date>2007-02-28T08:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: 3d Object</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103405#M31792</link>
      <description>Yes, your suggestion, too, is a viable option.</description>
      <pubDate>Wed, 28 Feb 2007 08:12:41 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103405#M31792</guid>
      <dc:creator>Laszlo Nagy</dc:creator>
      <dc:date>2007-02-28T08:12:41Z</dc:date>
    </item>
    <item>
      <title>Re: 3d Object</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103406#M31793</link>
      <description>you could also open the library part, add a boolean parameter called "show3d" (or something), and nest all of the 3D script inside an IF/THEN statement:&lt;BR /&gt;
&lt;BR /&gt;
IF show3d THEN&lt;BR /&gt;
  &amp;lt;enter 3d script here&amp;gt;&lt;BR /&gt;
ENDIF&lt;BR /&gt;
&lt;BR /&gt;
Then you have the option of turning the 3D on or off...</description>
      <pubDate>Wed, 28 Feb 2007 13:31:10 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103406#M31793</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-02-28T13:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: 3d Object</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103407#M31794</link>
      <description>All good ideas, thanks guys!!</description>
      <pubDate>Thu, 01 Mar 2007 20:38:09 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/3d-Object/m-p/103407#M31794</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2007-03-01T20:38:09Z</dc:date>
    </item>
  </channel>
</rss>

