JMP 15: get function doesn't work with modal windows
If you try this script (obtained from the scripting index in JMP 15) Names Default To Here( 1 );
New Window( "Example",
<<modal,
numbox = Number Edit Box( 0 )
);
Print( numbox << Get );and edit the number box you get this error:deleted object reference: numbox << Get in access or evaluation of 'Glue' , Names Default To Here( 1 ); /*###*/New Window( "Example",
<<modal,
numbox = Number Edit Box(...
vince_faller