New to JMP and scripting.
I was wondering why
New window("Report", For( i = 1, i <= 3, i++, Text box("hello"); ); );
doesn't return 3 instances of text in a new window.
How would I go about outputing text in a window thats nested inside a for loop?
Go to Solution
Try this
New window("Report", vlb = VlistBox(); ); For( i = 1, i <= 3, i++, vlb << Append(Text box("hello")); );
View solution in original post
Great. Many thanks.