Send chart to journal using window name, not by using handle to chart?
Consider the following example script (a simplified version of my actual problem)Names Default To Here(1);
dt = open("$SAMPLE_DATA/Big Class.jmp");
//Scatt3D = dt << Scatterplot 3D( Y( :age, :height ), X Axis( :age ), Y Axis( :height ) );
include ("plotScatterPlot.jsl");
Window ("Big Class - Scatterplot 3D of age, height")<< journal;
//Scatt3D << journal
where plotScatterPlot.jsl contains
Scatt
...