- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Terminate script running
Hi,
Is there some way to terminate run of the following script without closing JMP?
Thanks.
For( i = 1, i <= 10, i++,
win = New Window( "ABC", <<modal, Text Box( Char( i ) ) );
);
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Terminate script running
Call the Throw() function when you want to exit a script without quitting JMP.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Terminate script running
Sometimes you can hit the ESC key and it stops JSL from running. Operative word here is "sometimes"!