2016-08-31 02:08 PM
2016-08-31 02:52 PM
2016-08-31 03:07 PM
2016-09-01 04:22 AM
If expr is a numerical expression, it means a story index: only the number of stories and the information on the specified story is returned.So if you have 'expr' and a number (say 0) then you will get info only for the storey starting at story 0.
DIM t[] n = REQUEST ("STORY_INFO", "", nr, t) FOR i = 1 TO nr nr = STR ("%.0m", t [4 * (i - 1) + 1]) name = t [4 * (i - 1) + 2] elevation = STR ("%m", t [4 * (i - 1) + 3]) height = STR ("%m", t [4 * (i - 1) + 4]) TEXT2 0, -i, nr + "," + name + "," + elevation + "," + height NEXT iREQUEST Story_Info will work in 2D and parameter scripts.
2016-09-02 02:45 AM
2016-09-04 12:42 AM