<?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 &amp;quot;Radio&amp;quot; button parameters? in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/quot-Radio-quot-button-parameters/m-p/65990#M39043</link>
    <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;I'm trying to figure out a way to do a really elaborate schedule for a 2 million + square foot project we have.&lt;BR /&gt;
&lt;BR /&gt;
What I'm trying to do is create the ability to group 4 or 5 parameters in an object together. If a user places a value in one of them, the others go blank. Essentially the same function as a Radio Button.&lt;BR /&gt;
&lt;BR /&gt;
I've been poking around the AC9 library for a function or kludge for this, without much luck.&lt;BR /&gt;
&lt;BR /&gt;
Has anyone else done this? Or have an idea as to how it could be done?&lt;BR /&gt;
&lt;BR /&gt;
Thanks!&lt;/T&gt;&lt;/DIV&gt;</description>
    <pubDate>Mon, 22 Nov 2004 19:04:57 GMT</pubDate>
    <dc:creator>TomWaltz</dc:creator>
    <dc:date>2004-11-22T19:04:57Z</dc:date>
    <item>
      <title>"Radio" button parameters?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/quot-Radio-quot-button-parameters/m-p/65990#M39043</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;T&gt;I'm trying to figure out a way to do a really elaborate schedule for a 2 million + square foot project we have.&lt;BR /&gt;
&lt;BR /&gt;
What I'm trying to do is create the ability to group 4 or 5 parameters in an object together. If a user places a value in one of them, the others go blank. Essentially the same function as a Radio Button.&lt;BR /&gt;
&lt;BR /&gt;
I've been poking around the AC9 library for a function or kludge for this, without much luck.&lt;BR /&gt;
&lt;BR /&gt;
Has anyone else done this? Or have an idea as to how it could be done?&lt;BR /&gt;
&lt;BR /&gt;
Thanks!&lt;/T&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 22 Nov 2004 19:04:57 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/quot-Radio-quot-button-parameters/m-p/65990#M39043</guid>
      <dc:creator>TomWaltz</dc:creator>
      <dc:date>2004-11-22T19:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: "Radio" button parameters?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/quot-Radio-quot-button-parameters/m-p/65991#M39044</link>
      <description>&lt;BLOCKQUOTE&gt;TomWaltz wrote:&lt;BR /&gt;Or have an idea as to how it could be done?&lt;/BLOCKQUOTE&gt;

Just guessing, but would GLOB_MODPAR_NAME in combination with setting the other params to blank  and then LOCKing or HIDEing them do the trick?&lt;BR /&gt;
&lt;BR /&gt;
Karl</description>
      <pubDate>Tue, 23 Nov 2004 01:01:33 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/quot-Radio-quot-button-parameters/m-p/65991#M39044</guid>
      <dc:creator>Karl Ottenstein</dc:creator>
      <dc:date>2004-11-23T01:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: "Radio" button parameters?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/quot-Radio-quot-button-parameters/m-p/65992#M39045</link>
      <description>Try this (from brain to keyboard) in master:&lt;BR /&gt;

&lt;PRE&gt;&lt;I&gt;
&lt;/I&gt;! parameters btn1, btn2, btn3 as checkbox

if GLOB_MODPAR_NAME="btn1" and (GLOB_CONTEXT=1 or GLOB_CONTEXT=5) then
  btn1=1 : btn2=0 : btn3=0
  parameters btn1=btn1, btn2=btn2, btn3=btn3
  endif

if GLOB_MODPAR_NAME="btn2" and (GLOB_CONTEXT=1 or GLOB_CONTEXT=5) then
  btn1=0 : btn2=1 : btn3=0
  parameters btn1=btn1, btn2=btn2, btn3=btn3
  endif

if GLOB_MODPAR_NAME="btn3" and (GLOB_CONTEXT=1 or GLOB_CONTEXT=5) then
  btn1=0 : btn2=0 : btn3=1
  parameters btn1=btn1, btn2=btn2, btn3=btn3
  endif


&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Nov 2004 01:45:27 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/quot-Radio-quot-button-parameters/m-p/65992#M39045</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2004-11-23T01:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: "Radio" button parameters?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/quot-Radio-quot-button-parameters/m-p/65993#M39046</link>
      <description>&lt;BLOCKQUOTE&gt;F. wrote:&lt;BR /&gt;Try this (from brain to keyboard) in master:&lt;/BLOCKQUOTE&gt;

Your brain is working better than mine as usual, Frank. &lt;E&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/E&gt;&lt;BR /&gt;
&lt;BR /&gt;
Not sure what I was thinking with my original comment about LOCK or HIDE for the other params!  Obviously, no other radio option could then be selected.  Duh!&lt;BR /&gt;
&lt;BR /&gt;
Karl "brain working better after dinner"</description>
      <pubDate>Tue, 23 Nov 2004 04:02:23 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/quot-Radio-quot-button-parameters/m-p/65993#M39046</guid>
      <dc:creator>Karl Ottenstein</dc:creator>
      <dc:date>2004-11-23T04:02:23Z</dc:date>
    </item>
    <item>
      <title>Re: "Radio" button parameters?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/quot-Radio-quot-button-parameters/m-p/65994#M39047</link>
      <description>Thanks, Frank. As soon as I'm done in XML he!! I'll be giving that a try.&lt;BR /&gt;
&lt;BR /&gt;
FYI, I'm finding that it is much easier to create layer-to-layer translations with the Archicad translator by creating an "outline" in Archicad, then using an XML editor like oXygen to copy/paste in layer names from a layer list.&lt;BR /&gt;
&lt;BR /&gt;
In fact, with two lists of layers, a spreadsheet, and a CSV conversion, I've almost gotten to the point where I don't type in a single layer name myself. (more on this later, when I have the whole thing figured out a little better.)</description>
      <pubDate>Tue, 23 Nov 2004 13:54:56 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/quot-Radio-quot-button-parameters/m-p/65994#M39047</guid>
      <dc:creator>TomWaltz</dc:creator>
      <dc:date>2004-11-23T13:54:56Z</dc:date>
    </item>
    <item>
      <title>Re: "Radio" button parameters?</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/quot-Radio-quot-button-parameters/m-p/65995#M39048</link>
      <description>&lt;BLOCKQUOTE&gt;Not sure what I was thinking with my original comment about LOCK or HIDE for the other params! Obviously, no other radio option could then be selected. Duh! &lt;/BLOCKQUOTE&gt;

I almost went along with you on that one Karl!</description>
      <pubDate>Mon, 06 Dec 2004 20:33:17 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/quot-Radio-quot-button-parameters/m-p/65995#M39048</guid>
      <dc:creator>TomWaltz</dc:creator>
      <dc:date>2004-12-06T20:33:17Z</dc:date>
    </item>
  </channel>
</rss>

