We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2015-09-02 06:09 PM - last edited on 2023-05-24 10:48 AM by Rubia Torres
2015-09-03 02:52 AM
success = request("Home_story_of_opening", "", _index, _story_name) text2 0, 0, _story_nameTo get the story height you can use GLOB_HSTORY_HEIGHT:
text2 0, 0, GLOB_HSTORY_HEIGHTOr (a better way) is to add this line after the "Home_story_of_opening" request shown above:
success = request("Story_info", _index, _nStories, _index, _name, _elevation, _height) text2 0, 0, _height
2015-09-03 05:20 PM