cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.
Choose Language Hide Translation Bar
BabyDoragon
Level II

Issue with 'Save Script for All Objects': Missing Button Icons

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;
		), 

	)
);
1 REPLY 1
jthi
Super User

Re: Issue with 'Save Script for All Objects': Missing Button Icons

You could save the report scripts to specific folder to access them later and then have a script which can be used to load them as needed. You could also try to use JMP Projects but they can be annoying to manage.

-Jarmo

Recommended Articles