cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to move from signal modeling to system modeling at the first JMP Aerospace Analytics webinar. Register. June 18, 1 p.m. US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
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

Recommended Articles