<?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: Problem with REQUEST in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100753#M33997</link>
    <description>&lt;BLOCKQUOTE&gt;The INPUT statements are correct. &lt;/BLOCKQUOTE&gt; I am surprised by this, because the syntax does not look like they should be. Can you send me an example PLA? (I send you a contact by PM, the opengdl - contact is broken a few days &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_sad.gif" style="display : inline;" /&gt; )&lt;BR /&gt;
&lt;BR /&gt;
You are opening the file by "WO". This means all will be overwritten, each time the script runs. If you put it in master script, this could cause, that the last run of the script will have a context the request does not work indeed.&lt;BR /&gt;
&lt;BR /&gt;
AFAIR does not work the HOME-STORY- REQUEST in settings dialog. So you will not be able to store the REQUEST-result into the parameter by PARAMETERS. This is the problem you quoted, we have found in the other request thread.&lt;BR /&gt;
&lt;BR /&gt;
Another point is, that the file has to be created BEFORE any window script is run. This might cause problems too, because you can't influence the order of the objects to be recalculated.&lt;BR /&gt;
&lt;BR /&gt;
EDIT:&lt;BR /&gt;
I have to correct me. You are right, the syntax seems to be correct. I haven't understood, that you use the story name as part of the recordID, I thought you read all from file and  separate it in the GDL code.</description>
    <pubDate>Thu, 15 Jun 2006 10:40:50 GMT</pubDate>
    <dc:creator>Frank Beister</dc:creator>
    <dc:date>2006-06-15T10:40:50Z</dc:date>
    <item>
      <title>Problem with REQUEST</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100749#M33993</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;&lt;R&gt;First I will explain what I am trying to do.&lt;BR /&gt;
I have a 2D object placed on each storey of my plan.&lt;BR /&gt;
In this I set default values required for energy efficiency calculations for glazing (i.e U-value, SHGC, shade overhang, shade height).&lt;BR /&gt;
All this is fine and works well.&lt;BR /&gt;
I REQUEST the home storey of the object and OUTPUT the values to a text file.&lt;BR /&gt;
&lt;BR /&gt;
Here is the bit of script that does it and as I said all works well and the text (Excel) file is created.&lt;BR /&gt;
&lt;BR /&gt;
&lt;FONT color="#0000ff"&gt;rrr=REQUEST ("Name_of_plan", "", pname)&lt;BR /&gt;
rrr=REQUEST ("Home_story", "", hsindex, hsname)&lt;BR /&gt;
&lt;BR /&gt;
fspec="C:\Program Files\ArchiCAD 8.1\ArchiCAD Data Folder"+pname+"_BCA_window_default_settings.xls"&lt;BR /&gt;
       ch1 = open("data",fspec,"Separator='\t',Mode = WO")&lt;BR /&gt;
OUTPUT ch1, hsname + " - U_value", 1, U_value&lt;BR /&gt;
OUTPUT ch1, hsname + " - SHGC", 1, SHGC&lt;BR /&gt;
OUTPUT ch1, hsname + " - Shade o/hang", 1, shade_ohang&lt;BR /&gt;
OUTPUT ch1, hsname + " - Shade height", 1, shade_hgt&lt;BR /&gt;
    close ch1&lt;/FONT&gt;&lt;BR /&gt;
&lt;BR /&gt;
The output in the file looks like this but in two tabbed columns (name and value).&lt;BR /&gt;
&lt;FONT color="#ff0036"&gt;Ground floor - Shade height	2.243&lt;BR /&gt;
Ground floor - Shade o/hang	0.6&lt;BR /&gt;
Ground floor - SHGC	                0.81&lt;BR /&gt;
Ground floor - U_value	7.9&lt;BR /&gt;
Upper floor - Shade height	2.4&lt;BR /&gt;
Upper floor - Shade o/hang	0.4&lt;BR /&gt;
Upper floor - SHGC	                0.95&lt;BR /&gt;
Upper floor - U_value   	8.2&lt;/FONT&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Now the problem comes with my doors and windows.&lt;BR /&gt;
These objects need to read in the default values for the storey they are located on.&lt;BR /&gt;
So in each object I need to INPUT to read in these values.&lt;BR /&gt;
Here is the script for that.&lt;BR /&gt;
&lt;BR /&gt;
&lt;FONT color="#0024ff"&gt;rrr=REQUEST ("Name_of_plan", "", pname)&lt;BR /&gt;
rrr=REQUEST ("Home_story", "", hsindex, hsname)&lt;BR /&gt;
fspec="C:\Program Files\ArchiCAD 8.1\ArchiCAD Data Folder"+pname+"_BCA_window_default_settings.xls"&lt;BR /&gt;
	   ch1 = open("data",fspec,"Separator='\t',Mode = WA")&lt;BR /&gt;
in1 = INPUT (ch1, hsname + " - U_value", 1, U_value)&lt;BR /&gt;
in2 = INPUT (ch1, hsname + " - SHGC", 1, SHGC)&lt;BR /&gt;
in3 = INPUT (ch1, hsname + " - Shade o/hang", 1, shade_ohang)&lt;BR /&gt;
in4 = INPUT (ch1, hsname + " - Shade height", 1, shade_hgt)&lt;BR /&gt;
&lt;BR /&gt;
	close ch1&lt;BR /&gt;
&lt;BR /&gt;
PARAMETERS U_value = U_value&lt;BR /&gt;
PARAMETERS SHGC = SHGC&lt;BR /&gt;
PARAMETERS shade_ohang = shade_ohang&lt;BR /&gt;
PARAMETERS shade_hgt = shade_hgt&lt;/FONT&gt;&lt;BR /&gt;
&lt;BR /&gt;
The problem is the "hsname" variable seems to have no value when used in the INPUT command.&lt;BR /&gt;
There was a discussion in another post on a different subject but also involed a problem with REQUEST.&lt;BR /&gt;
&lt;A href="http://archicad-talk.graphisoft.com/viewtopic.php?t=8856&amp;amp;start=10" target="_blank"&gt;&lt;LINK_TEXT text="http://archicad-talk.graphisoft.com/vie ... 6&amp;amp;start=10"&gt;http://archicad-talk.graphisoft.com/viewtopic.php?t=8856&amp;amp;start=10&lt;/LINK_TEXT&gt;&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
Franks reply at one point was
&lt;BLOCKQUOTE&gt;F. wrote:&lt;BR /&gt;Most REQUESTs and GLOBALs, which refer to environment specific status of the object do not work in the dialogue box or the object editing window. That sometimes anoying, because a placed object or window does have this relations yet, but they are not available, when the script runs for the preview.&lt;BR /&gt;
&lt;BR /&gt;
We had this with ZONE_RELATIONS a few weeks ago in the german talk, where one wanted to take over the zone number into an object, which was placed on the zone area. We did not get it to work, because in case PARAMETERS work, the REQUEST returned a zero-result.
&lt;/BLOCKQUOTE&gt;

&lt;BR /&gt;
The big question is how can I get the windows and doors to read values from the text file based on the storey name?&lt;BR /&gt;
I want this to be automatic - I don't want to have to set a parameter in the door/window to say which storey it is in when I know it already recognizes this with the REQUEST function.&lt;BR /&gt;
How do I get the home storey request to work with the INPUT command?&lt;BR /&gt;
&lt;BR /&gt;
Any ideas appreciated.&lt;BR /&gt;
Barry.&lt;/R&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 24 May 2023 10:47:04 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100749#M33993</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2023-05-24T10:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with REQUEST</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100750#M33994</link>
      <description>I don't think that it's a request problem, because the open, output and input commands work all the time. You can check by an text editor, if the values you entered in the objects on each story are written to file.&lt;BR /&gt;
&lt;BR /&gt;
But your INPUT command seems to be wrong. You can not just substitute OUTPUT by INPUT. The commands for external file access are served by AddOns. They do the complete syntax check and return an error by a value as the the function result (n=INPUT() etc.). Because of this you might not have gotten an error. Have a look into the GDL manual to get the right syntax. You are using the DATA addon.</description>
      <pubDate>Thu, 15 Jun 2006 08:27:43 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100750#M33994</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2006-06-15T08:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with REQUEST</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100751#M33995</link>
      <description>&lt;BLOCKQUOTE&gt;F. wrote:&lt;BR /&gt;I don't think that it's a request problem, because the open, output and input commands work all the time. You can check by an text editor, if the values you entered in the objects on each story are written to file.&lt;BR /&gt;
&lt;BR /&gt;
But your INPUT command seems to be wrong. You can not just substitute OUTPUT by INPUT. The commands for external file access are served by AddOns. They do the complete syntax check and return an error by a value as the the function result (n=INPUT() etc.). Because of this you might not have gotten an error. Have a look into the GDL manual to get the right syntax. You are using the DATA addon.&lt;/BLOCKQUOTE&gt;

The INPUT statements are correct.&lt;BR /&gt;
If I put all this script in the 2D script then it all works fine.&lt;BR /&gt;
I get my return values for the INPUTS - I can check by adding them as TEXT2 in the object.&lt;BR /&gt;
&lt;BR /&gt;
That's why I was not getting anything before as I was doing my INPUTS in the master script where of course the object does not recognize any storeys.&lt;BR /&gt;
&lt;BR /&gt;
So the problem I now have is how do I get a value from the 2D script into the master or parameter script so I can set the parameters?&lt;BR /&gt;
I need (or would really like) the user to be able to see these default values in the object (but as locked values) because I need to be able to over-ride them if necessary by allowing the user to unlock them and insert their own value.&lt;BR /&gt;
But maybe only one of the four will change which is why I want the defaults there so all four values don't need to be entered.&lt;BR /&gt;
&lt;BR /&gt;
Almost there.&lt;BR /&gt;
Thanks,&lt;BR /&gt;
Barry.</description>
      <pubDate>Thu, 15 Jun 2006 09:47:31 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100751#M33995</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2006-06-15T09:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with REQUEST</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100752#M33996</link>
      <description>Barry,&lt;BR /&gt;
&lt;BR /&gt;
try to create the actual parameter named "hsname" in parameter list, place the request statement in the master script and write the code in the parameter script like this: PARAMETERS hsname=hsname.&lt;BR /&gt;
&lt;BR /&gt;
One more think - the master script is always run no matter which window 2D or 3D you are in, e.g. when in the plan the master script is actually a part of the 2D script and same for 3D and/or parameter script.</description>
      <pubDate>Thu, 15 Jun 2006 10:18:14 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100752#M33996</guid>
      <dc:creator>Rob</dc:creator>
      <dc:date>2006-06-15T10:18:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with REQUEST</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100753#M33997</link>
      <description>&lt;BLOCKQUOTE&gt;The INPUT statements are correct. &lt;/BLOCKQUOTE&gt; I am surprised by this, because the syntax does not look like they should be. Can you send me an example PLA? (I send you a contact by PM, the opengdl - contact is broken a few days &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_sad.gif" style="display : inline;" /&gt; )&lt;BR /&gt;
&lt;BR /&gt;
You are opening the file by "WO". This means all will be overwritten, each time the script runs. If you put it in master script, this could cause, that the last run of the script will have a context the request does not work indeed.&lt;BR /&gt;
&lt;BR /&gt;
AFAIR does not work the HOME-STORY- REQUEST in settings dialog. So you will not be able to store the REQUEST-result into the parameter by PARAMETERS. This is the problem you quoted, we have found in the other request thread.&lt;BR /&gt;
&lt;BR /&gt;
Another point is, that the file has to be created BEFORE any window script is run. This might cause problems too, because you can't influence the order of the objects to be recalculated.&lt;BR /&gt;
&lt;BR /&gt;
EDIT:&lt;BR /&gt;
I have to correct me. You are right, the syntax seems to be correct. I haven't understood, that you use the story name as part of the recordID, I thought you read all from file and  separate it in the GDL code.</description>
      <pubDate>Thu, 15 Jun 2006 10:40:50 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100753#M33997</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2006-06-15T10:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with REQUEST</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100754#M33998</link>
      <description>&lt;BLOCKQUOTE&gt;Rob wrote:&lt;BR /&gt;Barry,&lt;BR /&gt;
&lt;BR /&gt;
try to create the actual parameter named "hsname" in parameter list, place the request statement in the master script and write the code in the parameter script like this: PARAMETERS hsname=hsname.&lt;BR /&gt;
&lt;BR /&gt;
One more think - the master script is always run no matter which window 2D or 3D you are in, e.g. when in the plan the master script is actually a part of the 2D script and same for 3D and/or parameter script.&lt;/BLOCKQUOTE&gt;

Hi Rob,&lt;BR /&gt;
I wish it worked like this but the REQUEST seems to be a strange beast.&lt;BR /&gt;
Try this in the master script of an object with a parameter set up for "hsname".&lt;BR /&gt;
&lt;BR /&gt;
rrr=REQUEST ("Home_story", "", hsindex, hsname)&lt;BR /&gt;
&lt;BR /&gt;
PARAMETERS hsname=hsname&lt;BR /&gt;
TEXT2 0,0, hsname&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
You will get a value for hsname and you will see the text on plan, but the parameter will not be set.&lt;BR /&gt;
Exactly why I am not sure.&lt;BR /&gt;
As Frank explained to me the master script is run a number of times and each time only the relavent 2D, 3D etc., commands are processed (If I understood correctly).&lt;BR /&gt;
I still don't understand why if a variable has a value then why can't the parameter be set.&lt;BR /&gt;
Unless at some stage in the process the master script is being run and the variable has no value so is being set to nothing - but then why does the text appear still?&lt;BR /&gt;
I don't know, I'm a bit confused over all of this.&lt;BR /&gt;
You would think it would work but it doesn't so I need to find a way around it.&lt;BR /&gt;
&lt;BR /&gt;
Even saying -&lt;BR /&gt;
&lt;BR /&gt;
newname = hsname &lt;BR /&gt;
PARAMETERS newname = newname&lt;BR /&gt;
&lt;BR /&gt;
still doesn't work.&lt;BR /&gt;
Likewise I can't use the INPUT command in the master script as the field in the text file I am searching for is based on hsname.&lt;BR /&gt;
In the 2D script it all works fine.&lt;BR /&gt;
But then I can't set my retrieved inputs as parameters.&lt;BR /&gt;
&lt;BR /&gt;
Seems to be a bit of a trap at the moment.&lt;BR /&gt;
&lt;BR /&gt;
Barry.</description>
      <pubDate>Fri, 16 Jun 2006 03:01:55 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100754#M33998</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2006-06-16T03:01:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with REQUEST</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100755#M33999</link>
      <description>Barry,&lt;BR /&gt;
&lt;BR /&gt;
I just want to make sure...&lt;BR /&gt;
have you placed the expresion PARAMETERS hsname=hsname in the &lt;B&gt;parameter script window&lt;/B&gt;?&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
it works for me on v9 and v10 , attached image...&lt;BR /&gt;&lt;IMG src="https://community.graphisoft.com/t5/image/serverpage/image-id/9694i6134047AC49D0AEC/image-size/large?v=v2&amp;amp;px=999" border="0" alt="hsnamecode.jpg" title="hsnamecode.jpg" /&gt;</description>
      <pubDate>Fri, 16 Jun 2006 03:39:41 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100755#M33999</guid>
      <dc:creator>Rob</dc:creator>
      <dc:date>2006-06-16T03:39:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with REQUEST</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100756#M34000</link>
      <description>&lt;BLOCKQUOTE&gt;Rob wrote:&lt;BR /&gt;Barry,&lt;BR /&gt;
&lt;BR /&gt;
I just want to make sure...&lt;BR /&gt;
have you placed the expresion PARAMETERS hsname=hsname in the &lt;B&gt;parameter script window&lt;/B&gt;?&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
it works for me on v9 and v10 , attached image...&lt;/BLOCKQUOTE&gt;

I've tried in all the scripts.&lt;BR /&gt;
Obviously a bug in V81. &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_evil.gif" style="display : inline;" /&gt; &lt;BR /&gt;
&lt;BR /&gt;
Just checked in V9.0 which we aren't using but I got the other day.&lt;BR /&gt;
And it works fine. &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_lol.gif" style="display : inline;" /&gt; &lt;BR /&gt;
&lt;BR /&gt;
We have upgraded to V10 which will hopefully arrive soon.&lt;BR /&gt;
I was hoping to jump straight to that version without installing V9.0 on all of our machines (69 licenses).&lt;BR /&gt;
&lt;BR /&gt;
Now I just hope we can open our existing V81 files in V10 with no problems or I am stuck &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_exclaim.gif" style="display : inline;" /&gt; &lt;BR /&gt;
&lt;BR /&gt;
I guess I will just have to wait and see.&lt;BR /&gt;
&lt;BR /&gt;
Do you have V10 AUS already or were you a beta-tester &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_question.gif" style="display : inline;" /&gt; &lt;BR /&gt;
&lt;BR /&gt;
Thanks for your input.&lt;BR /&gt;
I knew I should have checked in V90. &lt;IMG src="https://community.graphisoft.com/legacyfs/online/emojis/icon_rolleyes.gif" style="display : inline;" /&gt; &lt;BR /&gt;
Barry.</description>
      <pubDate>Fri, 16 Jun 2006 05:39:03 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100756#M34000</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2006-06-16T05:39:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with REQUEST</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100757#M34001</link>
      <description>&lt;BLOCKQUOTE&gt;F. wrote:&lt;BR /&gt;&lt;BLOCKQUOTE&gt;
You are opening the file by "WO". This means all will be overwritten, each time the script runs. If you put it in master script, this could cause, that the last run of the script will have a context the request does not work indeed.
&lt;/BLOCKQUOTE&gt;

Yes I should be opening as read only.&lt;BR /&gt;
I had just copied this from another script where I needed to input the value and then add to it and output it back to get a total value from a group of individual objects.&lt;BR /&gt;

&lt;BLOCKQUOTE&gt;F. wrote:&lt;BR /&gt;&lt;BLOCKQUOTE&gt;
AFAIR does not work the HOME-STORY- REQUEST in settings dialog. So you will not be able to store the REQUEST-result into the parameter by PARAMETERS. This is the problem you quoted, we have found in the other request thread.
&lt;/BLOCKQUOTE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BLOCKQUOTE&gt;

Seems all my problems have been solved and it turns out to be a bug in V8.1&lt;BR /&gt;
As Rob points out it works fine in later versions so I will just have to wait till V10 arrives.&lt;BR /&gt;
I should have checked before as I have found other problems that don't work in V81 as they should but do in V90 (and hopefully V10).&lt;BR /&gt;
&lt;BR /&gt;
Thanks for your help.&lt;BR /&gt;
Barry.</description>
      <pubDate>Fri, 16 Jun 2006 05:51:28 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100757#M34001</guid>
      <dc:creator>Barry Kelly</dc:creator>
      <dc:date>2006-06-16T05:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with REQUEST</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100758#M34002</link>
      <description>&lt;BLOCKQUOTE&gt;Do you have V10 AUS already or were you a beta-tester&lt;/BLOCKQUOTE&gt;

no, I do not have v10AUS yet. yes, I am a beta fiddler...&lt;BR /&gt;
&lt;BR /&gt;
and try to not use AC8.1 anymore it is a scary piece of work...</description>
      <pubDate>Fri, 16 Jun 2006 07:01:53 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100758#M34002</guid>
      <dc:creator>Rob</dc:creator>
      <dc:date>2006-06-16T07:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with REQUEST</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100759#M34003</link>
      <description>I gave it just a try and here are my results:&lt;BR /&gt;
&lt;BR /&gt;
• Using the fieformat DATA means, that disregarding using WO or WA a certain database item will be overwritten by the next output on this record-id/field-id. If you don't control it a valid value will be overwritten by an empty one.&lt;BR /&gt;
&lt;BR /&gt;
• &lt;B&gt;REQUEST ("Home_story",&lt;/B&gt; does work in AC8.1 too. But as in our ZONE-RELATON-problem with 8.1 not in all context. Unfortunatly not in that moment, PARAMETERS does work. See below.&lt;BR /&gt;
&lt;BR /&gt;
• You could write your values to the file, if you check the &lt;I&gt;&lt;/I&gt;&lt;S&gt;&lt;I&gt;&lt;I&gt;&lt;/I&gt;&lt;/I&gt;&lt;/S&gt;hsname&lt;E&gt;&lt;/E&gt; before:&lt;BR /&gt;
&lt;B&gt;IF hsname&amp;lt;&amp;gt;"" THEN&lt;BR /&gt;
  OPEN ...&lt;BR /&gt;
  OUTPUT...&lt;BR /&gt;
  ENDIF&lt;/B&gt;&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
---------&lt;BR /&gt;
I did the following:&lt;BR /&gt;
I added file writing commands (text type) to the master script, writing GLOB_CONTEXT, GLOB_SCRIPT_TYPE and the requested HomeStory cumulative (WA).&lt;BR /&gt;
&lt;BR /&gt;
Then I selected the object in the settings dialog and placed it on the floor plan (for that the first few lines can not have in both cases any valid requested value). Then I activated the object, returned to settings dialog and closed window without changes.&lt;BR /&gt;
&lt;BR /&gt;
The result in AC 8.1&lt;BR /&gt;
&lt;FONT color="#ff002d"&gt;5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	4	»«&lt;BR /&gt;
5	4	»«&lt;BR /&gt;
5	2	»«&lt;BR /&gt;
2	2	»0. Geschoss «&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	4	»«&lt;BR /&gt;
5	4	»0. Geschoss «&lt;BR /&gt;
5	2	»0. Geschoss «&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
&lt;/FONT&gt;&lt;BR /&gt;
The result in AC 9.0&lt;BR /&gt;
&lt;FONT color="#ff002d"&gt;5	5	»«&lt;BR /&gt;
5	5	»«&lt;BR /&gt;
5	4	»«&lt;BR /&gt;
5	4	»«&lt;BR /&gt;
5	2	»«&lt;BR /&gt;
2	2	»0. Geschoss «&lt;BR /&gt;
5	5	»0. Geschoss «&lt;BR /&gt;
5	5	»0. Geschoss «&lt;BR /&gt;
5	5	»0. Geschoss «&lt;BR /&gt;
5	5	»0. Geschoss «&lt;BR /&gt;
5	5	»0. Geschoss «&lt;BR /&gt;
5	5	»0. Geschoss «&lt;BR /&gt;
5	4	»0. Geschoss «&lt;BR /&gt;
5	4	»0. Geschoss «&lt;BR /&gt;
5	2	»0. Geschoss «&lt;BR /&gt;
2	2	»0. Geschoss «&lt;BR /&gt;
5	5	»0. Geschoss «&lt;BR /&gt;
5	5	»0. Geschoss «&lt;BR /&gt;
5	5	»0. Geschoss «&lt;BR /&gt;
5	5	»0. Geschoss «&lt;BR /&gt;
5	5	»0. Geschoss «&lt;BR /&gt;
5	5	»0. Geschoss «&lt;BR /&gt;
5	5	»0. Geschoss «&lt;BR /&gt;
5	5	»0. Geschoss «&lt;/FONT&gt;&lt;BR /&gt;
&lt;BR /&gt;
You see, as you pointed out, that the behaviour has changed to 9.0. One may call it a bug, GS will call it an improvement. Now we need the improvement for the ZONE-RELATION REQUEST too.</description>
      <pubDate>Fri, 16 Jun 2006 07:30:59 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/Problem-with-REQUEST/m-p/100759#M34003</guid>
      <dc:creator>Frank Beister</dc:creator>
      <dc:date>2006-06-16T07:30:59Z</dc:date>
    </item>
  </channel>
</rss>

