cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • See how to use the JMP Marketplace – Free tools to expand JMP capabilities. Register. July 10, 2 pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
kca
kca
Level II

Preferred method to abort JSL script

How can I tell JSL to stop executing a script?  I would like to know both the programmatic way and the keyboard shortcut way if possible.  I don't want to close JMP.

Thanks for your help!

Update: Digging around the scripting guide I found that Stop() stops a running script, and ESC does the same thing in the editor.

1 ACCEPTED SOLUTION

Accepted Solutions
XanGregg
Staff

Preferred method to abort JSL script

A related function is Throw(), which can be useful if you only want to abort part of the script. Combine it with Try() to control recovery.

View solution in original post

2 REPLIES 2
XanGregg
Staff

Preferred method to abort JSL script

A related function is Throw(), which can be useful if you only want to abort part of the script. Combine it with Try() to control recovery.

jorgeramosdealm
Level III

Re: Preferred method to abort JSL script

From the manual

Infinite Loops

For loops that always evaluate as true create an infinite loop, which never stops. To end the loop as the script runs, press ESC on Windows (or COMMAND-PERIOD on Macintosh).


How do you start it again?

Recommended Articles