Dynamic Number boxes based on list items
In the following script I have a list of 3 elements and I am trying to create a new window where the user can enter some values for each of the elements:myList = {"apple", "banana", "orange"};
nw = New Window( "Enter Numbers",
<<Modal,
<<Return Result,
V List Box(
Text Box("Enter the values"),
For( i = 1, i <= N Items( myList ), i++,
Lineup Box( Text Box( Eval(my
...