2004-06-21 02:56 PM
REQUEST ("Story", "", index, story_name) in the GDL reference manual, but I'm not really sure what to do with it from there.Zname = index + Zname, but Archicad gives me an error "Unused function return value."
2004-06-21 03:08 PM
ROOM_NUMBER = sindex + ROOM_NUMBERnot zname.
2004-06-21 04:12 PM
story_ID_OK = REQUEST ("Story", "", story_index, story_name)
Otherwise you get the error message. It actually does not interfere with the function of the part. The error only shows up when you check scripts.2004-06-21 08:26 PM
story_ID_OK = REQUEST ("Story", "", story_index, story_name)
! adjust +1 for Euro-style flr numbers
IF story_index < 0 THEN
Fix_Val = 0
ELSE
Fix_Val = 1
ENDIF
ROOM_NUMBER = STR (story_index+Fix_Val,1,0) + ROOM_NUMBER
2004-06-22 11:00 AM