Hello Guys,
New to jmp scripting. I require assistance
I want to get the script after user specifies the valid information
dt = Open( "$SAMPLE_DATA/semiconductor capability.jmp" );
obj = dt << Variability Chart();
// I want to get Script after User clicks OK How to do that
If i have a string and to run it as script i do this
dt = Open( "$SAMPLE_DATA/semiconductor capability.jmp" );
theScript = "Variability Chart( Y( :NPN2 ), X( :wafer ) );";
// I run this string as script by following
ww = New Window( "dummy window", <<Script, theScript);
ed = ww[Script Box(1)];
ed << Run();
ww <<CloseWindow();
// But is there a way to assign it to a obj that runs holds output of the script?
like
obj << that holds the "Variability Chart( Y( :NPN2 ), X( :wafer ) )" as report(which is the string content)
Thanks in advance