We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2018-02-18 12:20 AM
2018-02-18 04:40 AM
2018-02-18 04:47 AM
DIM wallSkinsBMat[][], wallSkinsBMat = WALL_SKINS_BMAT_NAMES IF elemType = 5 THEN !Wall FOR i = 1 TO VARDIM1(wallSkinsBMat) reqNote = reqNote + "\nBMat " + STR(i,1,0) + ": " + wallSkinsBMat[1] NEXT i FOR i = 1 TO VARDIM1(wallSkinsBMat) reqParam = wallSkinsParams[18] n = REQUEST{2} ("Building_Material_info", reqParam, "gs_bmat_id", id) reqNote = reqNote + "\nBMat ID " + STR(i,1,0) + ": " + id NEXT i ENDIF
2018-02-19 04:06 AM
2018-02-19 04:46 AM
2018-02-21 03:37 PM
if WALL_CROSSSECTION_TYPE = 0 then ! Complex Profile if WALL_SKINS_NUMBER = 0 then ! You can give out a warning text or creating a parameter for manual select a BMAT here. else if ac_wall_display_option = 4 then ! Outlines Only ! Again, Give out a warning text or creating a parameter for manual select a BMAT here. else ! This is where the data is available, so you can n = REQUEST{2} ("Building_Material_info", reqParam, "gs_bmat_id", id) endif endif endif