JSL: make check box in loop
Hello guys,I'm learning JSL recent days , but come across many problems , one of them is like this:see I have 3 names stored in a table, I want to put these names into a window with check box infront of each name:I can make it by the script below:/* script 1 */x1="Name1";x2="Name2";x3="Name3";New Window("Hi", y1=Check Box(eval(x1)),y2=Check Box(eval(x2)),y3=Check Box(eval(x3)));how can I do it in ...