<?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: Need Help Customize Dimension Marker for Windows and Doo in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Need-Help-Customize-Dimension-Marker-for-Windows-and-Doors/m-p/66316#M36152</link>
    <description>This should be possible with the command: numb=&lt;B&gt;REQUEST ("ASSOCLP_PARVALUE", parameter_ask, parameter_answer, type, status, dim1, dim2, result)&lt;/B&gt;.&lt;BR /&gt;
&lt;BR /&gt;
Have a look to &lt;BR /&gt;
&lt;A href="http://archicad-talk.graphisoft.com/viewtopic.php?p=38077&amp;amp;highlight=assoclpparvalue#38077" target="_blank"&gt;this tread&lt;/A&gt; and &lt;A href="http://archicad-talk.graphisoft.com/viewtopic.php?p=17416&amp;amp;highlight=assoclpparvalue#17416" target="_blank"&gt;this one.&lt;/A&gt;</description>
    <pubDate>Thu, 20 Oct 2005 06:26:07 GMT</pubDate>
    <dc:creator>Frank Beister</dc:creator>
    <dc:date>2005-10-20T06:26:07Z</dc:date>
    <item>
      <title>Need Help Customize Dimension Marker for Windows and Doors</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Need-Help-Customize-Dimension-Marker-for-Windows-and-Doors/m-p/66315#M36151</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;Is there a way you can pull specific data in from a window or door object to reflect change in a dimension marker.  I have made a marker to type out the width and height easily. Is there a way to add text like "single" or "double" when the window or door object parameter list "single" or Double" Can anyone help please.&lt;BR /&gt;
&lt;BR /&gt;
Example:&lt;BR /&gt;
(DBL.) 3'-0"x6'-8" or&lt;BR /&gt;
(D.H.) 2'-8"x6'-0" &lt;BR /&gt;
  w/1'-0" Trans.&lt;BR /&gt;
&lt;BR /&gt;
Thanks&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 24 May 2023 10:48:11 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Need-Help-Customize-Dimension-Marker-for-Windows-and-Doors/m-p/66315#M36151</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-05-24T10:48:11Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help Customize Dimension Marker for Windows and Doo</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Need-Help-Customize-Dimension-Marker-for-Windows-and-Doors/m-p/66316#M36152</link>
      <description>This should be possible with the command: numb=&lt;B&gt;REQUEST ("ASSOCLP_PARVALUE", parameter_ask, parameter_answer, type, status, dim1, dim2, result)&lt;/B&gt;.&lt;BR /&gt;
&lt;BR /&gt;
Have a look to &lt;BR /&gt;
&lt;A href="http://archicad-talk.graphisoft.com/viewtopic.php?p=38077&amp;amp;highlight=assoclpparvalue#38077" target="_blank"&gt;this tread&lt;/A&gt; and &lt;A href="http://archicad-talk.graphisoft.com/viewtopic.php?p=17416&amp;amp;highlight=assoclpparvalue#17416" target="_blank"&gt;this one.&lt;/A&gt;</description>
      <pubDate>Thu, 20 Oct 2005 06:26:07 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Need-Help-Customize-Dimension-Marker-for-Windows-and-Doors/m-p/66316#M36152</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2005-10-20T06:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help Customize Dimension Marker for Windows and Doo</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Need-Help-Customize-Dimension-Marker-for-Windows-and-Doors/m-p/66317#M36153</link>
      <description>Thank you very much for the help. I got it to work &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_biggrin.gif" style="display : inline;" /&gt; &lt;BR /&gt;
&lt;BR /&gt;
Here is a break down to help someone else of my level. If something is missing let me know. I am very new to all of this.&lt;BR /&gt;
&lt;BR /&gt;
1: the door object has a drop down list to choose from&lt;BR /&gt;
(The variable name of the drop down list is swing_type)&lt;BR /&gt;
single&lt;BR /&gt;
double&lt;BR /&gt;
No Door&lt;BR /&gt;
double acting single&lt;BR /&gt;
etc....&lt;BR /&gt;
&lt;BR /&gt;
2: I want to display the above selected text in the Dimension marker object&lt;BR /&gt;
&lt;BR /&gt;
3: In the Dimension marker object:&lt;BR /&gt;
&lt;BR /&gt;
[In Master Script I typed the following]&lt;BR /&gt;
&lt;BR /&gt;
anyname= REQUEST ("ASSOCLP_PARVALUE", "swing_type",index, type, flags, dim1, dim2, val_dtp)  &lt;BR /&gt;
&lt;BR /&gt;
[In the 2D Script I typed the following]&lt;BR /&gt;
&lt;BR /&gt;
text2 0,1, val_dtp&lt;BR /&gt;
&lt;BR /&gt;
the 0,1 are just a quick X,Y placements of the text to see your results&lt;BR /&gt;
&lt;BR /&gt;
In your preview screen you will only see 0&lt;BR /&gt;
Once you open the door object and place in your drawing you will see the added text&lt;BR /&gt;
Single, Double etc... you selected in the door object.&lt;BR /&gt;
&lt;BR /&gt;
Hope this is a simple understanding for someone else in need of help&lt;BR /&gt;
I also found this helpful as well.&lt;BR /&gt;
&lt;A href="http://archicad-talk.graphisoft.com/viewtopic.php?t=648" target="_blank"&gt;http://archicad-talk.graphisoft.com/viewtopic.php?t=648&lt;/A&gt;&lt;BR /&gt;
thank you for the thread</description>
      <pubDate>Thu, 20 Oct 2005 21:42:13 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Need-Help-Customize-Dimension-Marker-for-Windows-and-Doors/m-p/66317#M36153</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-10-20T21:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help Customize Dimension Marker for Windows and Doo</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Need-Help-Customize-Dimension-Marker-for-Windows-and-Doors/m-p/66318#M36154</link>
      <description>If you use different windows the parameter-name "swing_type" may be different too. For this you could check out all possible windows for their specific parameter names and differ between by using&lt;BR /&gt;
&lt;BR /&gt;
&lt;B&gt;sts=REQUEST ("ASSOCLP_NAME", "", object_name)&lt;/B&gt;, which brings up the associated object name. By a simple IF-THEN it will work with more windows.&lt;BR /&gt;

&lt;PRE&gt;IF sts THEN
  IF object_name="window1" THEN stsR= REQUEST ("ASSOCLP_PARVALUE", "swing_type",index, type, flags, dim1, dim2, val_dtp) 
  IF object_name="window2" THEN stsR= REQUEST ("ASSOCLP_PARVALUE", "opening_type",index, type, flags, dim1, dim2, val_dtp) 
  ENDIF&lt;/PRE&gt;

You should use the results of the REQUEST. In my code STS and STS1. They are zero, if there is no parameter with this name to request from. In this case val_dtp could become/keep numeric and you maybe run in 2D into an error</description>
      <pubDate>Fri, 21 Oct 2005 06:41:46 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Need-Help-Customize-Dimension-Marker-for-Windows-and-Doors/m-p/66318#M36154</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2005-10-21T06:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help Customize Dimension Marker for Windows and Doo</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Need-Help-Customize-Dimension-Marker-for-Windows-and-Doors/m-p/66319#M36155</link>
      <description>I see. Makes great sense. This also allows you to combine windows and doors with one marker.&lt;BR /&gt;
&lt;BR /&gt;
Thanks for your help.</description>
      <pubDate>Fri, 21 Oct 2005 15:46:22 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Need-Help-Customize-Dimension-Marker-for-Windows-and-Doors/m-p/66319#M36155</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-10-21T15:46:22Z</dc:date>
    </item>
  </channel>
</rss>

