<?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: missing D1 Transom shutter variables in Installation &amp; update</title>
    <link>https://community.graphisoft.com/t5/Installation-update/missing-D1-Transom-shutter-variables/m-p/16047#M1947</link>
    <description>Well (sheepish)  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_confused.gif" style="display : inline;" /&gt;  I understand now why the "width" variable disappears...&lt;BR /&gt;
&lt;BR /&gt;
These new Lib parts are very intelligent - the variable list changes with the selection of different shutter types - all good - except if one selects shutter type seven - as I did - the "width" variable disappears!&lt;BR /&gt;
&lt;BR /&gt;
I can't understand why type seven was intended to be a fixed-width - but the answer is to select one of the other types - then enter the proper width - then return to the type seven selection.&lt;BR /&gt;
&lt;BR /&gt;
Onward and Upward... maybe this will help another...</description>
    <pubDate>Fri, 15 Jul 2005 14:05:04 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2005-07-15T14:05:04Z</dc:date>
    <item>
      <title>missing D1 Transom shutter variables</title>
      <link>https://community.graphisoft.com/t5/Installation-update/missing-D1-Transom-shutter-variables/m-p/16046#M1946</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;I'm trying to add a shutter to the D1 Transom door. Problem is - there is no visible parameter for "shutter width".&lt;BR /&gt;&lt;BR /&gt;If I open the part and take a peek, I see the parameter *is* there - it's one of the blue ones (intrinsic to this type of library part?). But when closed and viewed under the normal selection settings dialog - it aint' there!&lt;BR /&gt;&lt;BR /&gt;What could be going on? I'm running X 10.4.1 on a G5 imac. - Thanks.&lt;BR /&gt;&lt;BR /&gt;Attached screen shot of variable list...&lt;/DIV&gt;
&lt;P&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="D1 Transom Variables.jpg" style="width: 644px;"&gt;&lt;img src="https://community.graphisoft.com/t5/image/serverpage/image-id/68497i58AC7DDA7D1B5EBA/image-size/large?v=v2&amp;amp;px=999" role="button" title="D1 Transom Variables.jpg" alt="D1 Transom Variables.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2025 15:30:15 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Installation-update/missing-D1-Transom-shutter-variables/m-p/16046#M1946</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-29T15:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: missing D1 Transom shutter variables</title>
      <link>https://community.graphisoft.com/t5/Installation-update/missing-D1-Transom-shutter-variables/m-p/16047#M1947</link>
      <description>Well (sheepish)  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_confused.gif" style="display : inline;" /&gt;  I understand now why the "width" variable disappears...&lt;BR /&gt;
&lt;BR /&gt;
These new Lib parts are very intelligent - the variable list changes with the selection of different shutter types - all good - except if one selects shutter type seven - as I did - the "width" variable disappears!&lt;BR /&gt;
&lt;BR /&gt;
I can't understand why type seven was intended to be a fixed-width - but the answer is to select one of the other types - then enter the proper width - then return to the type seven selection.&lt;BR /&gt;
&lt;BR /&gt;
Onward and Upward... maybe this will help another...</description>
      <pubDate>Fri, 15 Jul 2005 14:05:04 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Installation-update/missing-D1-Transom-shutter-variables/m-p/16047#M1947</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-07-15T14:05:04Z</dc:date>
    </item>
    <item>
      <title>Re: missing D1 Transom shutter variables</title>
      <link>https://community.graphisoft.com/t5/Installation-update/missing-D1-Transom-shutter-variables/m-p/16048#M1948</link>
      <description>&lt;BLOCKQUOTE&gt;leporello wrote:&lt;BR /&gt;...Problem is - there is no visible parameter for "shutter width"....&lt;/BLOCKQUOTE&gt;

Open "Shutter.gsm" (must be extructed  from Object Library 9.PLA)&lt;BR /&gt;
&lt;BR /&gt;
In Parameter script dialog find( for shutter type=7):&lt;BR /&gt;
&lt;BR /&gt;
if gs_window_shutter = stShutterStyle[8] then	! solid shutter&lt;BR /&gt;
	hideparameter	"gs_shutter_type",&lt;BR /&gt;
			&lt;FONT color="red"&gt;"gs_shutter_width",&lt;/FONT&gt;&lt;BR /&gt;
			"gs_shutter_pos",&lt;BR /&gt;
			"gs_shu_frame_w",&lt;BR /&gt;
			"gs_shutter_w",&lt;BR /&gt;
			"gs_shutter_th",&lt;BR /&gt;
			"gs_shutter_ang",&lt;BR /&gt;
			"gs_shut_fill_typ",&lt;BR /&gt;
			"gs_hor_board_w",&lt;BR /&gt;
			"gs_ver_board_w",&lt;BR /&gt;
			"gs_hor_bn",&lt;BR /&gt;
			"gs_ver_bn",&lt;BR /&gt;
			"gs_board_w",&lt;BR /&gt;
			"gs_board_th",&lt;BR /&gt;
			"gs_shut_frame_mat"&lt;BR /&gt;
	lock "gs_shut_frame_mat"&lt;BR /&gt;
endif&lt;BR /&gt;
&lt;BR /&gt;
Deleting Red Marked line will allow you see required option in D-W Settings Dialog.</description>
      <pubDate>Fri, 15 Jul 2005 15:23:38 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Installation-update/missing-D1-Transom-shutter-variables/m-p/16048#M1948</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2005-07-15T15:23:38Z</dc:date>
    </item>
  </channel>
</rss>

