How can I run a script when exits JMP?
Hi, There is a way to run a script at start up. However, what should I do if I would like to run a script when exits JMP?The following code is an idea for doing that, but it didn't work in JMP.win=window("Home Window");
win<<on close(
new window("Goodbye :)",
<<modal,
text box("Thanks for using JMP")
)
);Any thoughts are appreciated. Best.