<?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: ROOM_POLY_STATUS in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278742#M3082</link>
    <description>Just a simple text2 command.&lt;BR /&gt;
&lt;BR /&gt;
I created a zone stamp sub-type, create a parameter "room_poly_status" and make it "integer" type.&lt;BR /&gt;
&lt;BR /&gt;
In 2D script, it's just ;&lt;BR /&gt;
&lt;BR /&gt;
text2 0, 0, room_poly_status&lt;BR /&gt;
&lt;BR /&gt;
That's it.</description>
    <pubDate>Sat, 26 Jan 2019 05:26:32 GMT</pubDate>
    <dc:creator>Palawat</dc:creator>
    <dc:date>2019-01-26T05:26:32Z</dc:date>
    <item>
      <title>ROOM_POLY_STATUS</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278733#M3073</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Hello,&lt;BR /&gt;
&lt;BR /&gt;
I'm trying to use room_poly_status to determine whether to display something in AC21.&lt;BR /&gt;
&lt;BR /&gt;
However archicad doesn't seem to recognise it and says that there isn't a parameters called that. &lt;BR /&gt;
&lt;BR /&gt;
How can I get this to work?&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 23 Jan 2019 17:42:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278733#M3073</guid>
      <dc:creator>JGoode</dc:creator>
      <dc:date>2019-01-23T17:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: ROOM_POLY_STATUS</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278734#M3074</link>
      <description>ROOM_POLY_STATUS is only available to zone stamps.&lt;BR /&gt;
&lt;BR /&gt;
Barry.</description>
      <pubDate>Thu, 24 Jan 2019 01:11:14 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278734#M3074</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2019-01-24T01:11:14Z</dc:date>
    </item>
    <item>
      <title>Re: ROOM_POLY_STATUS</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278735#M3075</link>
      <description>Yes, that's what I am making. Am I correct in thinking that this command is the 'Construction Method' of the zone?</description>
      <pubDate>Thu, 24 Jan 2019 16:18:53 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278735#M3075</guid>
      <dc:creator>JGoode</dc:creator>
      <dc:date>2019-01-24T16:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: ROOM_POLY_STATUS</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278736#M3076</link>
      <description>Yes it just determines if it is a manually drawn zone, or auto fill to zone boundaries or auto fill to wall ref lines.&lt;BR /&gt;
&lt;BR /&gt;
Barry.</description>
      <pubDate>Fri, 25 Jan 2019 00:39:16 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278736#M3076</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2019-01-25T00:39:16Z</dc:date>
    </item>
    <item>
      <title>Re: ROOM_POLY_STATUS</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278737#M3077</link>
      <description>Is it working in AC21? It just seems to return the value of 0 rather than 1 / 2 so I'm unable to use it.&lt;BR /&gt;
&lt;BR /&gt;
Here is an example of its use:
&lt;PRE&gt;	if (room_area &amp;lt;&amp;gt; room_net_area) or (room_area &amp;lt;&amp;gt; room_reduced_area) or (room_area &amp;lt;&amp;gt; room_calc_area) or (room_poly_status = 0) then
		stamp_error = 1
	else
		stamp_error = 0
	endif&lt;/PRE&gt;</description>
      <pubDate>Fri, 25 Jan 2019 10:06:34 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278737#M3077</guid>
      <dc:creator>JGoode</dc:creator>
      <dc:date>2019-01-25T10:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: ROOM_POLY_STATUS</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278738#M3078</link>
      <description>In "Zone Selection Settings" under "Name and Positioning", you will see options for "Zone Polygon".&lt;BR /&gt;
&lt;BR /&gt;
If "Geometry method" is set to "Reference Line" and "Gross" is selected, ROOM_POLY_STATUS returns 2.&lt;BR /&gt;
If "Geometry method" is set to "Reference Line" and "Net" is selected, ROOM_POLY_STATUS returns 1.&lt;BR /&gt;
If "Geometry method" is set to "Manual" or "Inner Edge", ROOM_POLY_STATUS returns 0.&lt;BR /&gt;
&lt;BR /&gt;
Tested with AC21&lt;BR /&gt;
&lt;BR /&gt;
HTH</description>
      <pubDate>Fri, 25 Jan 2019 10:31:48 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278738#M3078</guid>
      <dc:creator>Palawat</dc:creator>
      <dc:date>2019-01-25T10:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: ROOM_POLY_STATUS</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278739#M3079</link>
      <description>So I've tried this using this code:
&lt;PRE&gt;	 if ROOM_POLY_STATUS = 0 then text2 0, 2, "0"
	 if ROOM_POLY_STATUS = 1 then text2 0, 2, "1"
	 if ROOM_POLY_STATUS = 2 then text2 0, 2, "2"&lt;/PRE&gt;

and it still doesn't seem to work. Any Ideas?</description>
      <pubDate>Fri, 25 Jan 2019 12:04:58 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278739#M3079</guid>
      <dc:creator>JGoode</dc:creator>
      <dc:date>2019-01-25T12:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: ROOM_POLY_STATUS</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278740#M3080</link>
      <description>I'm afraid I ran out of idea.&lt;BR /&gt;
&lt;BR /&gt;
Good luck.</description>
      <pubDate>Fri, 25 Jan 2019 13:29:41 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278740#M3080</guid>
      <dc:creator>Palawat</dc:creator>
      <dc:date>2019-01-25T13:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: ROOM_POLY_STATUS</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278741#M3081</link>
      <description>Do you have any example code which you have gotten to work?</description>
      <pubDate>Fri, 25 Jan 2019 14:08:58 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278741#M3081</guid>
      <dc:creator>JGoode</dc:creator>
      <dc:date>2019-01-25T14:08:58Z</dc:date>
    </item>
    <item>
      <title>Re: ROOM_POLY_STATUS</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278742#M3082</link>
      <description>Just a simple text2 command.&lt;BR /&gt;
&lt;BR /&gt;
I created a zone stamp sub-type, create a parameter "room_poly_status" and make it "integer" type.&lt;BR /&gt;
&lt;BR /&gt;
In 2D script, it's just ;&lt;BR /&gt;
&lt;BR /&gt;
text2 0, 0, room_poly_status&lt;BR /&gt;
&lt;BR /&gt;
That's it.</description>
      <pubDate>Sat, 26 Jan 2019 05:26:32 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278742#M3082</guid>
      <dc:creator>Palawat</dc:creator>
      <dc:date>2019-01-26T05:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: ROOM_POLY_STATUS</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278743#M3083</link>
      <description>That did the trick! Thanks.&lt;BR /&gt;
&lt;BR /&gt;
I didn't create the parameter for it which was the issue!</description>
      <pubDate>Wed, 30 Jan 2019 15:08:04 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278743#M3083</guid>
      <dc:creator>JGoode</dc:creator>
      <dc:date>2019-01-30T15:08:04Z</dc:date>
    </item>
    <item>
      <title>Re: ROOM_POLY_STATUS</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278744#M3084</link>
      <description>That's strange. I thought ArchiCad would give some kind of error message to let you know about "invalid parameter" if you haven't created it. But anyway, glad it's sorted out.</description>
      <pubDate>Thu, 31 Jan 2019 14:28:58 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/ROOM-POLY-STATUS/m-p/278744#M3084</guid>
      <dc:creator>Palawat</dc:creator>
      <dc:date>2019-01-31T14:28:58Z</dc:date>
    </item>
  </channel>
</rss>

