Update values in window
Hi, the following code has a table box containg a number col edit box initialized to [1,2,3]. However, I would like for when the button named "Change Vals" is pressed, to update the values in the number col edit box to [4,5,6]. How can I go about doing this? Code show below..Names Default To Here( 1 ); list = [1, 2, 3]; New Window( "Test", Button Box( "Change Vals", list = [4, 5, 6] ), Table Bo...
ngonzalez0