Get Script after User Input and Script to String
Hello Guys,New to jmp scripting. I require assistanceI want to get the script after user specifies the valid informationdt = 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 = "Variab
...