2012-06-29 03:16 PM
2012-06-30 11:11 PM
These objects use the 'values' GDL command in a way that is no longer supported in ArchiCAD 16. As a result, some parameters of already placed objects may change in an unexpected way.
2012-06-30 11:17 PM
Juha wrote:See Ralph's post here:
I wonder what this non supported way of use is?
2012-07-01 10:21 AM
2012-07-02 11:18 AM
2012-07-02 12:41 PM
Juha wrote:As an example, let's say we have a text parameter called "openingType". If you wanted to allow the user to enter a value, you would write the following:
I wonder what this non supported way of use is?
ui_infield{2} openingType, 0, 0, 100, 18If "openingType" was an array, i.e. it could hold more than one text item, and you wanted to allow the user to edit the second text item you could write:
ui_infield{2} openingType[2], 0, 0, 100, 18In either case, you could constrain the opening types the user could select by adding the following:
values "openingType" "Door", "Window", "Panel"When the user edited the item, they could only pick the specified values. It only applied when the user was editing the parameter, and only to the value they were editing. If item 1 of the array was "Frame" and item 3 was "Pane", they would remain untouched.
2012-07-02 12:51 PM
2012-07-03 10:45 AM
rocorona wrote:That was my first thought too - I actually reported it as a bug initially. But it transpires that the change is in accordance with future plans for the VALUES command, and therefore not a bug. I'm not too concerned from a development point of view - changes happen all the time and this one isn't difficult to cope with - but I'm worried that this causes silent data changes that may go unnoticed for some time. It's risky from a user perspective. It would have been better if there had been perhaps 1 year's notice so their would be time for a planned migration.
it would have been more honest to call it a bug. A bug that will not be fixed.
2012-07-03 02:23 PM
Ralph wrote:Agree. That's the real bad point. Although I'm sure that use of VALUES with array variables is very rare. I think I've never used it... but I'm NOT sure. There are lots of object I've made and forgot during the years.
but I'm worried that this causes silent data changes that may go unnoticed for some time.
2012-07-04 03:14 AM