We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2017-07-11 02:42 PM
2017-07-11 07:34 PM
JGoode wrote:! Master
Hi,
I am trying to adjust my object using A and B in proportion to eachother. I just need A to equal B and visa versa. Any help?
Thanks
2017-07-12 03:34 AM
if GLOB_MODPAR_NAME = "A" then B=A endif if GLOB_MODPAR_NAME = "B" then A=B endif PARAMETERS A=A, B=BBarry.
2017-07-12 01:57 PM
Barry wrote:Thanks, this worked nicely. Do you know if there is a way to get A to scale with B whilst keeping the same ratio? for example;
To make it a 2-way interaction I would add this to the master script.
if GLOB_MODPAR_NAME = "A" then B=A endif if GLOB_MODPAR_NAME = "B" then A=B endif PARAMETERS A=A, B=BBarry.
2017-07-13 04:00 AM
if GLOB_MODPAR_NAME = "A" then B=A*ratio endif if GLOB_MODPAR_NAME = "B" then A=B/ratio endif PARAMETERS A=A, B=BNow you can adjust the ration parameter to whatever you want in each object.