We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2014-01-27 12:15 PM
2014-01-30 03:26 PM
2014-01-30 07:46 PM
sampleParameter1 = sampleParameter2 + " " + sampleParameter3 + " " + sampleParameter4or add symbols in between.
sampleParameter1 = sampleParameter2 + " + " + sampleParameter3 + " + " + sampleParameter4There are many ways you could move on from here as to how to approach building the parameters in each object and in the label. For instance, instead of creating parameters AND writing that code in each object to be labeled, I would organize it so that I just create as few parameters/code as needed in each object, and use the label to get values from them and build the output there, as maintaining the code in the label -a single object- will be simpler.
2014-01-31 08:36 AM
2014-01-31 10:21 AM
2014-01-31 01:48 PM
2014-01-31 01:49 PM
2014-01-31 04:08 PM
2014-02-13 04:07 PM
andro55 wrote:I have done this, and it works. But I have several parameters that I would like to add individual hotspots to, is this possible?
!Text hotspots
unID = 1
HOTSPOT2 0, txty, unID, txtx, 1+128 : unID=unID+1
HOTSPOT2 txtx, txty, unID, txtx, 2 : unID=unID+1
HOTSPOT2 -1, txty, unID, txtx, 3 : unID=unID+1
HOTSPOT2 txtx, 0, unID, txty, 1+128 : unID=unID+1
HOTSPOT2 txtx, txty, unID, txty, 2 : unID=unID+1
HOTSPOT2 txtx, -1, unID, txty, 3 : unID=unID+1
IF showSampleText THEN text2 txtx, txty, sampleParameter
In the Parameters Window add 2 variables for text position:
" txtx" and "txty"
2014-02-13 09:30 PM
2014-02-14 12:17 AM