<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: JMP Scripting - Presentation/Journal in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-Presentation-Journal/m-p/870734#M103433</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/67288"&gt;@AdditiveLamb108&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I created the template by creating one slide on PPT, right clicking the layout and selecting 'Title and Content' - since this is the first (and only slide) when JMP selects the template it is forced into the Title and Content format (or any other format you choose). I don't see any reference to "Slide Layout()"&amp;nbsp; that &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/67960"&gt;@EmilyMark&lt;/a&gt;&amp;nbsp;mentioned in the JSL Scripting Index and couldn't get that to work either so I don't know if they can clarify further.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would suggest you get over to the &lt;A href="https://community.jmp.com/t5/JMP-Wish-List/idb-p/jmp-wish-list" target="_self"&gt;Wish List section&lt;/A&gt; and put a request in for additional functionalities to help. I can see on&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Making-JMP-Exporting-Figures-Visually-appealing-and-Editable/idi-p/804382" target="_self"&gt; this Wish&lt;/A&gt; that development have already said they're exploring ways to improve JMP export to powerpoint. I know it doesn't help at the moment but hopefully some improvements will come that can help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Ben&lt;/P&gt;</description>
    <pubDate>Tue, 29 Apr 2025 08:05:12 GMT</pubDate>
    <dc:creator>Ben_BarrIngh</dc:creator>
    <dc:date>2025-04-29T08:05:12Z</dc:date>
    <item>
      <title>JMP Scripting - Presentation/Journal</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-Presentation-Journal/m-p/869576#M103232</link>
      <description>&lt;P&gt;Hello JMP Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I need some help outputting my journal to a presentation.&lt;/P&gt;
&lt;P&gt;The thing is, I want the presentation to use the specific pptx theme.&lt;/P&gt;
&lt;P&gt;&amp;gt;&amp;nbsp;'jour &amp;lt;&amp;lt; Save Presentation("' + tech_epi + "\\" + tech_epi + '.pptx", Template("C:\\Code\\Scripts\\PCM CPK Automation\\TrendChart-template.pptx"));\n'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Currently, inside my template.pptx, it only has 1 slide inside it. A empty title slide. But the title slide is of the desired pptx theme.&lt;/P&gt;
&lt;P&gt;When the script below runs, it puts each Oneway plot on a new title slide. I want it to create a new Content slide and put the Oneway plots in the content slides.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How might I go about this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I checked the Scripting Index but had some trouble understanding it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AdditiveLamb108_0-1745354654010.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/75088iAFD62F572D31B06A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AdditiveLamb108_0-1745354654010.png" alt="AdditiveLamb108_0-1745354654010.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;jsl_code = (
                    'jmp_dt = Open("' + file_path + '");\n'
                    'column = Column(jmp_dt, "' + oracle_param + '");\n'
                    'column &amp;lt;&amp;lt; Set Name("' + param + '");\n'
                    'obj = jmp_dt &amp;lt;&amp;lt; Oneway(\n'
                    '    Y(:' + param + '),\n'
                    '    X(:LOT),\n'
                    '    Points(),\n'
                    '    Box Plots(1),\n'
                    '    Mean Diamonds(0),\n'
                    '    X Axis proportional(0),\n'
                    '    Grand Mean(0),\n'
                    '    SendToReport(\n'
                    '        Empty(),\n'
                    '        Dispatch({}, "1", ScaleBox, \n'
                    '            {Scale(Linear), Format(Best), Min(' + str(minY_plot) + '), Max(' + str(maxY_plot) + '), Inc(' + str(incr) + '),\n'
                    '            Add Ref Line(' + str(target) + ', Solid, Green),\n'
                    '            Add Ref Line(' + str(SH) + ', Solid, Red),\n'
                    '            Add Ref Line(' + str(SL) + ', Solid, Red),\n'
                    '            Add Ref Line(' + str(CH) + ', Dashed, Yellow),\n'
                    '            Add Ref Line(' + str(CL) + ', Dashed, Yellow)}\n'
                    '        ),\n'
                    '        Dispatch({}, "Oneway Plot", FrameBox, \n'
                    '            {Frame Size(1100, 400),\n'
                    '            Add Graphics Script(\n'
                    '                2,\n'
                    '                Description("Script"),\n'
                    '                Text Color("red");\n'
                    '                Text({0.1, ' + str(SL) + '}, "LSL");\n'
                    '            ), Add Graphics Script(\n'
                    '                3,\n'
                    '                Description("Script"),\n'
                    '                Text Color("red");\n'
                    '                Text({0.1, ' + str(SH) + '}, "USL");\n'
                    '            ), Add Graphics Script(\n'
                    '                4,\n'
                    '                Description("Script"),\n'
                    '                Text Color("yellow");\n'
                    '                Text({0.1, ' + str(CL) + '}, "LCL");\n'
                    '            ), Add Graphics Script(\n'
                    '                5,\n'
                    '                Description("Script"),\n'
                    '                Text Color("yellow");\n'
                    '                Text({0.1, ' + str(CH) + '}, "UCL");\n'
                    '            ), Add Graphics Script(\n'
                    '                7,\n'
                    '                Description("Script"),\n'
                    '                Text Color("green");\n'
                    '                Text({0.1, ' + str(target) + '}, "TGT");\n'
                    '            ),\n'
					'&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Marker Size(3)\n'
					'			}\n'
                    '        )\n'
                    '    )\n'
                    ');\n'
                    'obj &amp;lt;&amp;lt; Save Script to Data Table ( "Oneway", &amp;lt;&amp;lt;Replace ( 0 ), &amp;lt;&amp;lt;Prompt( 0 ));\n'
                    'obj &amp;lt;&amp;lt; Journal;\n'
                    'jour = Current Journal();'
                    'jour &amp;lt;&amp;lt; Save Presentation("' + tech_epi + "\\" + tech_epi + '.pptx", Template("C:\\Code\\Scripts\\PCM CPK Automation\\TrendChart-template.pptx"));\n'
                    'jmp_dt &amp;lt;&amp;lt; Save("' + tech_epi + "\\" + param + '.jmp");\n'
                    'Close (jmp_dt, "NoSave");\n'
                )&lt;/PRE&gt;</description>
      <pubDate>Tue, 22 Apr 2025 20:44:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-Presentation-Journal/m-p/869576#M103232</guid>
      <dc:creator>AdditiveLamb108</dc:creator>
      <dc:date>2025-04-22T20:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting - Presentation/Journal</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-Presentation-Journal/m-p/869665#M103244</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/67288"&gt;@AdditiveLamb108&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It doesn't look like JSL/JMP is capable of controlling Powerpoint to tell it to create the new slides as content slides - however I've just had a try with creating a template where the first slide is set as 'Content' instead of title and this creates the slides in content layout, which you could then add your title slide to?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is&lt;A href="https://community.jmp.com/t5/Discussions/Ways-to-automate-and-customize-JSL-results-into-PowerPoint/m-p/19685" target="_self"&gt; another community article&lt;/A&gt; with some different approaches to Powerpoint exporting too.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Ben&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 11:45:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-Presentation-Journal/m-p/869665#M103244</guid>
      <dc:creator>Ben_BarrIngh</dc:creator>
      <dc:date>2025-04-23T11:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting - Presentation/Journal</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-Presentation-Journal/m-p/869681#M103249</link>
      <description>&lt;P&gt;You can customize your PowerPoint template to contain a content slide layout in order to avoid having to use title slides for every single one of your plots and instead use Slide Layout("Content") in your Save Presentation() call. Unfortunately, JMP defaults to title slides unless specified via layout.&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 10:49:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-Presentation-Journal/m-p/869681#M103249</guid>
      <dc:creator>EmilyMark</dc:creator>
      <dc:date>2025-04-23T10:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting - Presentation/Journal</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-Presentation-Journal/m-p/869924#M103296</link>
      <description>&lt;P&gt;Hello Emily.&lt;/P&gt;
&lt;P&gt;This is my template. Note it only has 1 slide.&lt;/P&gt;
&lt;P&gt;Note, the name of the slide is "Title and Content".&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AdditiveLamb108_0-1745449056317.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/75140iE702DC898459DC3F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AdditiveLamb108_0-1745449056317.png" alt="AdditiveLamb108_0-1745449056317.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;'jour &amp;lt;&amp;lt; Save Presentation("' + tech_epi + "\\" + tech_epi + '.pptx", Template("C:\\Code\\Scripts\\PCM CPK Automation\\TrendChart-template.pptx"), Save Layout("Title and Content") );\n'&lt;BR /&gt;&lt;BR /&gt;I added Save Layout to my Save Presentation. But I get an error.&lt;BR /&gt;&lt;BR /&gt;Name Unresolved: Save Layout in access or evaluation of 'Save Layout' , Save Layout( "Title and Content" ) /*###*/&lt;BR /&gt;&lt;BR /&gt;Am i using Save Layout correctly?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 22:59:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-Presentation-Journal/m-p/869924#M103296</guid>
      <dc:creator>AdditiveLamb108</dc:creator>
      <dc:date>2025-04-23T22:59:27Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting - Presentation/Journal</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-Presentation-Journal/m-p/870692#M103422</link>
      <description>&lt;P&gt;Hi Ben,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I took a look at some of the existing articles.&lt;/P&gt;
&lt;P&gt;Looks like most of the discussions suggest:&lt;/P&gt;
&lt;P&gt;1) Going via Excel to create Powerpoint&lt;/P&gt;
&lt;P&gt;2) Going via Powerpoint Macro (VBA)&lt;/P&gt;
&lt;P&gt;3) Using Control Chart() in JSL&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I really don't want to use Excel or Powerpoint to generate my powerpoint slides.&lt;/P&gt;
&lt;P&gt;I want to run a single JMP Script that will generate my powerpoint slides for me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm not familiar with Control Chart in JSL, but if that is something that can work for me; i'd be open to trying it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/51054"&gt;@Ben_BarrIngh&lt;/a&gt;&amp;nbsp;, is it possible for you to share your code where you said you were able to create a powerpoint using the "Content" slide. I have not been able to get this to work for the life of me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Nathan&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 23:25:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-Presentation-Journal/m-p/870692#M103422</guid>
      <dc:creator>AdditiveLamb108</dc:creator>
      <dc:date>2025-04-28T23:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting - Presentation/Journal</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-Presentation-Journal/m-p/870734#M103433</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/67288"&gt;@AdditiveLamb108&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I created the template by creating one slide on PPT, right clicking the layout and selecting 'Title and Content' - since this is the first (and only slide) when JMP selects the template it is forced into the Title and Content format (or any other format you choose). I don't see any reference to "Slide Layout()"&amp;nbsp; that &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/67960"&gt;@EmilyMark&lt;/a&gt;&amp;nbsp;mentioned in the JSL Scripting Index and couldn't get that to work either so I don't know if they can clarify further.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would suggest you get over to the &lt;A href="https://community.jmp.com/t5/JMP-Wish-List/idb-p/jmp-wish-list" target="_self"&gt;Wish List section&lt;/A&gt; and put a request in for additional functionalities to help. I can see on&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Making-JMP-Exporting-Figures-Visually-appealing-and-Editable/idi-p/804382" target="_self"&gt; this Wish&lt;/A&gt; that development have already said they're exploring ways to improve JMP export to powerpoint. I know it doesn't help at the moment but hopefully some improvements will come that can help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Ben&lt;/P&gt;</description>
      <pubDate>Tue, 29 Apr 2025 08:05:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-Presentation-Journal/m-p/870734#M103433</guid>
      <dc:creator>Ben_BarrIngh</dc:creator>
      <dc:date>2025-04-29T08:05:12Z</dc:date>
    </item>
    <item>
      <title>Re: JMP Scripting - Presentation/Journal</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-Scripting-Presentation-Journal/m-p/873549#M103762</link>
      <description>&lt;P&gt;Replying here for the updates.&lt;/P&gt;</description>
      <pubDate>Wed, 14 May 2025 12:44:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-Scripting-Presentation-Journal/m-p/873549#M103762</guid>
      <dc:creator>LaceyDrummond</dc:creator>
      <dc:date>2025-05-14T12:44:40Z</dc:date>
    </item>
  </channel>
</rss>

