The mismatch with your findings from my last entry was that I was using the Scripting Index for my syntax, which does not give the literal string options as the Help file does. Sorry about that.
Here is an example of the code working. It is without a template. It does not popup any path window. I don't have a template, and my past experience with using the template resulted in never getting it to work....I assume that it is my lack of PowerPoint knowledge for my failure. But the cod does work.
Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = bivariate( y( :weight ), x( :height ) );
rbiv = biv << report;
raw_mean_plot = "$TEMP/jmp_example4.pptx";
rbiv << Save Presentation(raw_mean_plot ,outline titles("none"),"PNG")
rbiv << Save Presentation(raw_mean_plot, append, "PNG")
Open( "$TEMP/jmp_example4.pptx" );
In your first example, you specify
Path(raw_mean_plot)
I assumed you were using Path as a place holder for the actual path. Is that the case? The Path function in JSL is a graphical function.
Jim