cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
rajang
Level I

JMP15 JSL script save presentation error

I get the following error if I have the EMF, PNG or JPG in the Save Presentation syntax. The same script works fine in JMP13; Is there any script change for JMP15.

 

Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = bivariate( y( :weight ), x( :height ) );
rbiv = biv << report;
rbiv << Save Presentation( "$TEMP/jmp_example.pptx", PNG );
Open( "$TEMP/jmp_example.pptx" );

 

rajang_0-1599687183603.png

Thanks

Rajan

2 ACCEPTED SOLUTIONS

Accepted Solutions

Re: JMP15 JSL script save presentation error

Hi,

 

If I put "PNG" in quotations it seems to work.  Please try that and see if it resolves the issue.

View solution in original post

Re: JMP15 JSL script save presentation error

This is a good general practice for options that do not take any arguments.  It looks like this particular option was changed to allow variable evaluation, as in:

 

fmt = "PNG";
rbiv << Save Presentation( "$TEMP/jmp_example.pptx", fmt );

View solution in original post

3 REPLIES 3

Re: JMP15 JSL script save presentation error

Hi,

 

If I put "PNG" in quotations it seems to work.  Please try that and see if it resolves the issue.

Re: JMP15 JSL script save presentation error

This is a good general practice for options that do not take any arguments.  It looks like this particular option was changed to allow variable evaluation, as in:

 

fmt = "PNG";
rbiv << Save Presentation( "$TEMP/jmp_example.pptx", fmt );
txnelson
Super User

Re: JMP15 JSL script save presentation error

The Scripting Index does not reflect this change.  I will put in the bug notification

Jim