The window size can be changed by passing the Set Window Size message to the New Window
Names Default to Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
nw = New Window( "A",
H List Box(
V List Box(
dt << New Data Box(),
obj = dt <<
Bivariate( Y( :Weight ), X( :Height ) )
),
Spacer Box( <<size( 30, 0 ) )
)
);
nw << set window size( 600, 800 );
P.S. Please use the JSL icon at the top of the Preview Window to enter JSL. It provides the user with an easier form of the code to read and understand.
Jim