For an ordinary window I can do this...
nw = New Window( "test window",
Text Box( "just trying out this window" )
);
nw << move window( 100, 500 );
But for a modal window that doesn't work - I get that, the window is busy waiting for inputs so doesn't get any message sent afterwards.
I tried sending this message when creating the window. But if I do it after the <<modal message it doesn't work (maybe for same reason?)
But this doesn't work either...
update = New Window( "Update stuff in this window",
<<movewindow( 100, 500 ),
<<modal,
Text Box( "blah blah" ),
Text Box( " " ),
Text Box( "value:" ),
ubox2 = Number Edit Box( 42, 5 ),
Text Box( " " ),
Button Box( "OK" )
);
With that it does move the window (and oddly reshape it) but the <<modal message does not work.
?
This is in JMP11. Thanks for any inputs.