Ah......yes the examples you attached are examples of single response variable analyses. Below, is an example of taking 1 of your examples, Fit Curve, and generating 127 analyses, each with a different response variable
Here is the simple script that produced the above output
Names Default To Here( 1 );
dt = Open( "$sample_data/semiconductor capability.jmp" );
colList = dt << get column names( continuous );
nw = New Window( "fit curves", lub = Lineup Box( N Col( 3 ) ) );
For( i = 2, i <= N Items( colList ), i++,
lub << append( Fit Curve( Y( Column( Char( colList[i] ) ) ), X( :npn1 ), Fit Quadratic ) )
);
Jim