Hi, if I run below script in JMP pro 15 with german language the window does not close when I click on cancel. Same script under english language works well. And even in JMP14 (german and english) the window is closed after click on cancel. Any idea how to get this modal window closed in JMP 15 german as well?
Thanks in advance,
Ivo
nw = New Window( "Test",
<<Modal,
Text Box( "Press OK to do something." ),
H List Box(
Button Box( "OK" ),
Button Box( "Cancel" )
)
);
// If cancel or X was clicked, stop the script
If( nw == {Button( -1 )}, Stop() );
Print( "Do something" );