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( 0 )
); /*###*/Print( numbox << Get ) /*###*/;
This used to work in JMP 13, how do you now get values from editable boxes in JMP 15?