取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

Discussions

Solve problems, and share tips and tricks with other JMP users.
选择语言 隐藏翻译栏
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 条回复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

推荐文章