How to add a button to open a script in another folder.
Hi all, how can i make it such that whenever i click a button i placed in a journal it will run the script that is located in another folder.Using a test script below i am able to successfully open script in another folder. This is on JMP16. Names Default To Here( 1 );
Clear Log();
Dir = Get Default Directory();
file_name = "JMP script/Load_PD.jsl";
file_path = Char(Dir || file_name);
Open(fil
...