Learn to manage BIM workflows and create professional Archicad templates with the BIM Manager Program.
2013-07-19 05:32 AM
2013-07-19 02:16 PM
Tom wrote:That is where I would start, create an argument for each story using the STW command and plug them in. Define the text style before using the STW command for accuracy of the text length.
Maybe the MAX command?
2013-07-20 09:48 PM
define style "textstyle" "Arial", 2, 1, 0 style "textstyle" storyName= "" maxWidth= 0 dim t[] n= request("STORY_INFO", "", nr, t)!--GDL Reference Guide 13 page 288 for i= 1 to nr storyName= t[4*(i-1)+2] storyWidth= STW(storyName)/1000*A_ if storyWidth> maxWidth then maxWidth= storyWidth endif next i
2013-07-22 03:11 AM
2013-07-22 09:01 PM