We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2015-11-11 02:43 AM - last edited on 2023-05-24 10:05 AM by Rubia Torres
2015-11-11 05:47 AM
!!!PARAMETERS SCRIPT !!! You must create the parameter named=gs_ui_current_page VALUES "gs_ui_current_page" 1,2,3 IF GLOB_UI_BUTTON_ID > 2 and GLOB_UI_BUTTON_ID < 2.1 THEN PARAMETERS gs_ui_current_page = GLOB_UI_BUTTON_ID - 2 ENDIF !!! INTERFACE SCRIPT UI_DIALOG "SL-GDL" ! Your any text UI_CURRENT_PAGE gs_ui_current_page UI_PAGE gs_ui_current_page DIM tabTitles[3] tabTitles[1] = " Parameters" tabTitles[2] = " Represent" tabTitles[3] = " Info" UI_BUTTON ui_prev, "<<", 295+10,2, 32,21, gs_ui_current_page - 1 !!!! Previous UI_BUTTON ui_next, ">>", 295+10+33,2, 32,21, gs_ui_current_page + 1 !!! Next page !!! HEAD !!! Example without icons CALL "ui_tabcontrol" parameters controlType = 1, nTabs = 3, gs_ui_current_page = gs_ui_current_page, tabTitles = tabTitles, drawBox = 1 !!! PAGES UI_PAGE 1 UI_PAGE 2 UI_PAGE 3
2015-11-11 09:51 AM
2015-11-11 11:32 AM
2015-11-11 09:48 PM
2015-11-14 03:04 AM