Hi,
I'm currently using JMP 17.
I try to generate a script for a window and attach it to a datatable. The code underneath works, but the generated script doesn't. The script JMP generates uses an ownerbox, which in turn isn't recognized by the syntax.
Is there a way I can avoid using this?
Thanks!
MyWindowScript = MyWindow << Get Script();
MyExpression = Expr(MyDataTable << New Script("Script Name", MyWindowScript));
Substitute Into(MyExpression, Expr(MyWindowScript), Parse(MyWindowScript));
Eval(MyExpression);