How to copy the script of one table to another table using JSL?
dt=Open("$SAMPLE_DATA/Big Class.jmp");
scriptContent = dt << Get Script("Oneway");
d9 = New Table("A");
d9 << New Script("Oneway", scriptContent);
Thanks Experts!