<?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: Change Style Name in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Change-Style-Name/m-p/266180#M199</link>
    <description>Or you could create a new property called "Door Style" and add it to your door with Classifications.  Then you just put the correct name.  Finally, add it to your schedule.&lt;BR /&gt;
If you are comfortable with &lt;A href="https://helpcenter.graphisoft.com/knowledgebase/83803/" target="_blank"&gt;Expression-Based Properties&lt;/A&gt;, you could refine the property, by reading the ObjectDoorStyle and converting the property value to your won specific name. i.e.:  If ObjectDoorStyle = "Style01" then "My Style Name01". If ObjectDoorStyle = "Style02" then "My Style Name02".  And so on.&lt;BR /&gt;
Hope this helps.</description>
    <pubDate>Thu, 13 May 2021 09:58:43 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-05-13T09:58:43Z</dc:date>
    <item>
      <title>Change Style Name</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Change-Style-Name/m-p/266178#M197</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;R&gt;Is there a way to change the style name of a door, in particular the garage doors?&lt;BR /&gt;
&lt;BR /&gt;
That way my schedule doesn't say "style 9" under type. OR a way to change the type in the schedule? (it only gives me the option of a list of style names....round and round.... &lt;A href="https://archicad-talk.graphisoft.com/posting.php?f=6&amp;amp;mode=post&amp;amp;sid=b4b5f4221ea76f9e8b4cff8fe01505ee" target="_blank"&gt;&lt;LINK_TEXT text="posting.php?f=6&amp;amp;mode=post&amp;amp;sid=b4b5f4221 ... 8fe01505ee"&gt;https://archicad-talk.graphisoft.com/posting.php?f=6&amp;amp;mode=post&amp;amp;sid=b4b5f4221ea76f9e8b4cff8fe01505ee&lt;/LINK_TEXT&gt;&lt;/A&gt;# ) &lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Thanks! &lt;BR /&gt;
&lt;BR /&gt;
Archicad 24&lt;BR /&gt;
Mac&lt;BR /&gt;
Designer&lt;/R&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 24 May 2023 08:39:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Change-Style-Name/m-p/266178#M197</guid>
      <dc:creator>JKL</dc:creator>
      <dc:date>2023-05-24T08:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Change Style Name</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Change-Style-Name/m-p/266179#M198</link>
      <description>One of the hack for similar problems, when it's necessary to change parameters from GDL object, that used for scheduling - is to re-save original element from standard library with different name and try to make some modifications to it.&lt;BR /&gt;
Most of library parts have request to macros, so actual file you are working with is almost empty from scripts.&lt;BR /&gt;
&lt;BR /&gt;
Then you can create another variable and add simple script (in master). In your case:&lt;BR /&gt;
&lt;BR /&gt;
DoorStyle='' !this is your new variable&lt;BR /&gt;
IF gs_shutPanel_type="style 1" THEN DoorStyle="your name 1"&lt;BR /&gt;
IF gs_shutPanel_type="style 2" THEN DoorStyle="your name 2"&lt;BR /&gt;
...&lt;BR /&gt;
PARAMETERS DoorStyle=DoorStyle&lt;BR /&gt;
&lt;BR /&gt;
That can solve your problem</description>
      <pubDate>Wed, 12 May 2021 22:38:32 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Change-Style-Name/m-p/266179#M198</guid>
      <dc:creator>Podolsky</dc:creator>
      <dc:date>2021-05-12T22:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: Change Style Name</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Change-Style-Name/m-p/266180#M199</link>
      <description>Or you could create a new property called "Door Style" and add it to your door with Classifications.  Then you just put the correct name.  Finally, add it to your schedule.&lt;BR /&gt;
If you are comfortable with &lt;A href="https://helpcenter.graphisoft.com/knowledgebase/83803/" target="_blank"&gt;Expression-Based Properties&lt;/A&gt;, you could refine the property, by reading the ObjectDoorStyle and converting the property value to your won specific name. i.e.:  If ObjectDoorStyle = "Style01" then "My Style Name01". If ObjectDoorStyle = "Style02" then "My Style Name02".  And so on.&lt;BR /&gt;
Hope this helps.</description>
      <pubDate>Thu, 13 May 2021 09:58:43 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Change-Style-Name/m-p/266180#M199</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-05-13T09:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Change Style Name</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Change-Style-Name/m-p/266181#M200</link>
      <description>&lt;BLOCKQUOTE&gt;Braza wrote:&lt;BR /&gt;
If you are comfortable with &lt;A href="https://helpcenter.graphisoft.com/knowledgebase/83803/" target="_blank"&gt;Expression-Based Properties&lt;/A&gt;, you could refine the property, by reading the ObjectDoorStyle and converting the property value to your won specific name. i.e.:  If ObjectDoorStyle = "Style01" then "My Style Name01". If ObjectDoorStyle = "Style02" then "My Style Name02".  And so on.&lt;BR /&gt;
Hope this helps.
&lt;/BLOCKQUOTE&gt;

&lt;BR /&gt;
The problem with this is that expressions in properties can not access object parameters.&lt;BR /&gt;
I am sure there has been many wishes for this.&lt;BR /&gt;
Here is one that I found - please vote.&lt;BR /&gt;
&lt;BR /&gt;
&lt;A href="https://archicad-talk.graphisoft.com/viewtopic.php?t=66651" target="_blank"&gt;&lt;LINK_TEXT text="viewtopic.php?t=66651"&gt;https://archicad-talk.graphisoft.com/viewtopic.php?t=66651&lt;/LINK_TEXT&gt;&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Barry.</description>
      <pubDate>Fri, 14 May 2021 00:36:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Change-Style-Name/m-p/266181#M200</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2021-05-14T00:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: Change Style Name</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Change-Style-Name/m-p/266182#M201</link>
      <description>Ooops!  &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_redface.gif" style="display : inline;" /&gt; Thanks Barry for the headsup. Another one for the Wishlist.   &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_rolleyes.gif" style="display : inline;" /&gt; &lt;BR /&gt;
So, back to square one JKL...  You can stick with the "Dumb" property and manual select and edit all doors at once.</description>
      <pubDate>Fri, 14 May 2021 09:21:20 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Change-Style-Name/m-p/266182#M201</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-05-14T09:21:20Z</dc:date>
    </item>
  </channel>
</rss>

