Many times I will place a picture of an object in a journal, if I don't want it to be changed. The simple script below does that for the output from a Fit Y by X(Bivariate)
Names Default To Here( 1 );
dt = Open( "$sample_data/semiconductor capability.jmp" );
biv = Bivariate(
Y( :PNP2 ),
X( :NPN1, PNP1 ),
Fit Line( {Line Color( {212, 73, 88} )} )
);
myJournal = New Window( "Locked",
((Report( biv[1] ) << parent) << parent) << get Picture
);
biv << close window;
Jim