Setting the starting directory for the "Save As" pop-up dialog with JSL
JMP Pro 16.1 I want to write script that brings up a "Save As" dialog box when a button is clicked, but I want to control what directory it starts in. I do not want to save the table with its current name; I want to give the user a chance to change the name before saving.If I run this code: dtTemp = New Table("Temp");
dtTemp << Save("");
The Save As dialog pops up in whatever directory I last sav...