<?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: How to add description to a custom door in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/How-to-add-description-to-a-custom-door/m-p/656181#M50935</link>
    <description>&lt;P&gt;Saving selection as a custom door will give you a basic, non-parametric door object.&lt;/P&gt;
&lt;P&gt;You would have to edit the object scripts and add all of the parameters you want if you really need them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
    <pubDate>Wed, 19 Mar 2025 00:54:13 GMT</pubDate>
    <dc:creator>Barry Kelly</dc:creator>
    <dc:date>2025-03-19T00:54:13Z</dc:date>
    <item>
      <title>How to add description to a custom door</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/How-to-add-description-to-a-custom-door/m-p/656176#M50934</link>
      <description>&lt;P&gt;I created a custom door using walls and slabs, and saving the selection as a door. However, because its custom, the Description panel is not there, d therefore I can't put in information for it to appear in the Door Schedule.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-03-18 at 6.32.13 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/84838i101387B73E8E3549/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-03-18 at 6.32.13 PM.png" alt="Screenshot 2025-03-18 at 6.32.13 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screenshot 2025-03-18 at 6.32.27 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/84837i79BC7A4D69678CF9/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screenshot 2025-03-18 at 6.32.27 PM.png" alt="Screenshot 2025-03-18 at 6.32.27 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;  &lt;/P&gt;</description>
      <pubDate>Thu, 20 Mar 2025 11:15:05 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/How-to-add-description-to-a-custom-door/m-p/656176#M50934</guid>
      <dc:creator>adrianasofiasm_</dc:creator>
      <dc:date>2025-03-20T11:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to add description to a custom door</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/How-to-add-description-to-a-custom-door/m-p/656181#M50935</link>
      <description>&lt;P&gt;Saving selection as a custom door will give you a basic, non-parametric door object.&lt;/P&gt;
&lt;P&gt;You would have to edit the object scripts and add all of the parameters you want if you really need them.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Barry.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 00:54:13 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/How-to-add-description-to-a-custom-door/m-p/656181#M50935</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2025-03-19T00:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to add description to a custom door</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/How-to-add-description-to-a-custom-door/m-p/656195#M50936</link>
      <description>&lt;P&gt;There is a macro you can add that should give all of that to you, so the amendment of a single CALL. I do not have access to AC atm, but will check back later if no one else has dug it up by then.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ling.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;!INTERFACE SCRIPT

"descriptionPage":

	dim stParamNames[16]
		stParamNames[1] = "gs_list_cost"
		stParamNames[2] = "gs_list_manufacturer"
		stParamNames[3] = "gs_list_note"
		stParamNames[4] = "gs_list_location"
		stParamNames[5] = "gs_list_accessories"
		stParamNames[6] = "FM_Type"
		stParamNames[7] = "FM_InventoryNumber"
		stParamNames[8] = "FM_SerialNumber"
		stParamNames[9] = "FM_ProductionYear"
		stParamNames[10] = "FM_ObjectWeight"
		stParamNames[11] = "FM_ObjectWeightUnit"
		stParamNames[12] = "gs_list_custom1"
		stParamNames[13] = "gs_list_custom2"
		stParamNames[14] = "gs_list_custom3"
		stParamNames[15] = "gs_list_custom4"
		stParamNames[16] = "gs_list_custom5"

	call "ui_object_listing" parameters all listfieldID = TABID_DESCRIPTIONS,
										listFieldPosY = 0,
										listFieldHeight = 265,
										stDescHeader = "",
										stValueHeader = "",
										stParamNames = stParamNames
return&lt;/LI-CODE&gt;
&lt;P&gt;Copy and paste the above into the &lt;EM&gt;Interface Script&lt;/EM&gt; of your object, then you will need to add each of the quoted parameters to your&amp;nbsp;&lt;EM&gt;Parameter List.&amp;nbsp;&lt;/EM&gt;Not too complicated if you want to dabble.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Mar 2025 07:26:01 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/How-to-add-description-to-a-custom-door/m-p/656195#M50936</guid>
      <dc:creator>Lingwisyer</dc:creator>
      <dc:date>2025-03-19T07:26:01Z</dc:date>
    </item>
  </channel>
</rss>

