In JSL, can I tell a modal window where to be?
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 does...