Error in running script - Send Expects Scriptable Object in access or evaluation of 'Send' , dt << /*###*/get column names( string, continuous ) /*###*/
I have modified the script shared earlier by one of the contributors (thank you) so that the user can choose which data file (.jmp) file to open: Names Default To Here( 1 );
// Open a dialog to choose a .jmp file to open
// Get the filename of the .jmp file to open
dt = Pick File("Select a .jmp file to open", "", {"JMP Files|jmp;jsl;jrn", "All Files|*"}, 1, 0, "");
// If the user did not select
...