N Col using textbox value
Hi all,I am trying to create a user input box that will determine the N Col for my line up box. I tried this script User_Input = New Window( "N Col", << modal(),
hlistbox(
Text Box( "Enter Column No: " ),
Col_Num_teb = Text Edit Box( "", <<set width( 200 ) ),
),
Button Box( "OK",
col_num = col_num_teb << get();
),
);
lb = LineUpBox( N Col(col_num) );
I tried entering 4 but ends up havi...