I need to record the settings of the graph and the graph itself for future operations, so I tried using 'Save Script for All Objects'. As shown in the following JSL, after clicking on Plot, I pressed 'Save Report' to save it. However, in the output results, although the content of the graph is still there, the content related to the buttons does not appear, making it impossible for me to achieve temporary storage and subsequent further settings for the graph output.
Could you suggest any methods to resolve the issue where icons such as buttons are not saved along with 'Save Script for All Objects'?
Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
nw2 = New Window( "New window",
outL1 = Outline Box( "Test",
outputGButton = Button Box( "Plot",
vv << append( Bivariate( y( :weight ), x( :height ) ) )
),
vv = V List Box(),
saveReportButton = Button Box( "Save Report",
nw2 << app << Save Script for All Objects;
Current Journal() << append( ob = Outline Box( "All Files" ) );
ob << Add All Open Files;
),
)
);