We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2014-01-27 12:15 PM
2014-01-27 02:19 PM
2014-01-27 02:29 PM
andro55 wrote:I looked in to their script called Label Everything but this seems a bit too much.
I think you have to contact "Master Script".....http://www.masterscript.nl/.
They have made few useful LABELS.
2014-01-27 04:53 PM
2014-01-28 03:08 PM
2014-01-28 04:06 PM
2014-01-29 12:00 PM
2014-01-29 12:38 PM
2014-01-29 06:11 PM
circle2 0,0,0.10 hotspot2 0,0In the parameter script, give your parameter the values you will want to display, something like:
VALUES 'sampleParameter' 'fv','dc','sx','az'If you want, you could show the text to see if it works:
text2 0,0,sampleParameterAlso, if you want, you could add a second boolean parameter to turn of the text in this object, just to make it simpler to work in the label; so make a new boolean parameter and name it "showSampleText" and leave it on by default, then change the text2 line in 2d script to:
IF showSampleText THEN text2 0,0,sampleParameterSave it and place it on plan.
requestedValue="" n = REQUEST("ASSOCLP_PARVALUE", "sampleParameter", DUMMY_name_index, DUMMY_type, DUMMY_flags, DUMMY_dim1, DUMMY_dim2, requestedValue)So with this, you have the value of the "sampleParameter" stored in the "requestedValue" variable, that gets initialized with requestedValue=""
text2 0,0,requestedValueSave your new label.
2014-01-30 09:14 AM