<?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: JSL: Save dashboard as interactive html in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JSL-Save-dashboard-as-interactive-html/m-p/370613#M62033</link>
    <description>&lt;P&gt;Hi Georg,&lt;/P&gt;&lt;P&gt;thanks for the advice. You are write. It is working now.&lt;/P&gt;&lt;P&gt;Do you have also an idea to save it as an interactive (html5) file, too?&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Markus&lt;/P&gt;</description>
    <pubDate>Tue, 23 Mar 2021 13:06:01 GMT</pubDate>
    <dc:creator>markus</dc:creator>
    <dc:date>2021-03-23T13:06:01Z</dc:date>
    <item>
      <title>JSL: Save dashboard as interactive html</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Save-dashboard-as-interactive-html/m-p/370542#M62024</link>
      <description>&lt;P&gt;I built a dashboard from a script and want to save it as an interactive html and close it afterwards. The script runs fine, but the saving and closing doesn't.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried it with something similar than this, but it doesn't work.&lt;/P&gt;&lt;P&gt;Help is appreciated! Thanks in advance!&lt;/P&gt;&lt;P&gt;Markus&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open("$SAMPLE_DATA/Quality Control/Steam Turbine Historical.jmp");
app = JMP App();
app &amp;lt;&amp;lt; Open File( "$SAMPLE_DASHBOARDS/Instant Dashboard.jmpappsource" );
box = app &amp;lt;&amp;lt; Run;

box &amp;lt;&amp;lt; save html("C:\Users\Markus\Desktop\test.htm");
close(box);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Jun 2023 22:09:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Save-dashboard-as-interactive-html/m-p/370542#M62024</guid>
      <dc:creator>markus</dc:creator>
      <dc:date>2023-06-09T22:09:19Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Save dashboard as interactive html</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Save-dashboard-as-interactive-html/m-p/370608#M62032</link>
      <description>&lt;P&gt;I think the run application command gave a different type than you expected,&lt;/P&gt;&lt;P&gt;try the attached script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

tmp_path = Substitute( Right( Convert File Path( "$TEMP" ), Length( Convert File Path( "$TEMP" ) ) - 1 ), "/", "\" );

Open( "$SAMPLE_DATA/Quality Control/Steam Turbine Historical.jmp" );
app = JMP App();
app &amp;lt;&amp;lt; Open File( "$SAMPLE_DASHBOARDS/Instant Dashboard.jmpappsource" );
box = app &amp;lt;&amp;lt; Run;

Show Properties( box );
Show( box );

(box &amp;lt;&amp;lt; get windows)[1] &amp;lt;&amp;lt; save html( "$TEMP\test.htm" );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 23 Mar 2021 12:59:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Save-dashboard-as-interactive-html/m-p/370608#M62032</guid>
      <dc:creator>Georg</dc:creator>
      <dc:date>2021-03-23T12:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Save dashboard as interactive html</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Save-dashboard-as-interactive-html/m-p/370613#M62033</link>
      <description>&lt;P&gt;Hi Georg,&lt;/P&gt;&lt;P&gt;thanks for the advice. You are write. It is working now.&lt;/P&gt;&lt;P&gt;Do you have also an idea to save it as an interactive (html5) file, too?&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Markus&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2021 13:06:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Save-dashboard-as-interactive-html/m-p/370613#M62033</guid>
      <dc:creator>markus</dc:creator>
      <dc:date>2021-03-23T13:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Save dashboard as interactive html</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Save-dashboard-as-interactive-html/m-p/370623#M62034</link>
      <description>&lt;P&gt;PS: The example I have taken from the community and added the saving part. In reality I build a skript which looks like this (abreviated (...) because it is very long).&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;HTL = JMP App( ... );
box = htl &amp;lt;&amp;lt; run;

Show Properties( box );
Show( box );
(box &amp;lt;&amp;lt; get windows)[1] &amp;lt;&amp;lt; html save( "C:\...\name.htm" );
Close( box );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;I have introduced your suggestions, but it is not running. Where is the mistake?&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Markus&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2021 13:33:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Save-dashboard-as-interactive-html/m-p/370623#M62034</guid>
      <dc:creator>markus</dc:creator>
      <dc:date>2021-03-23T13:33:38Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Save dashboard as interactive html</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Save-dashboard-as-interactive-html/m-p/370624#M62035</link>
      <description>&lt;P&gt;I found the mistake:&lt;/P&gt;&lt;P&gt;my command line said:&amp;nbsp; &amp;nbsp;&amp;lt;&amp;lt; html save ()&lt;/P&gt;&lt;P&gt;correct it should be:&amp;nbsp; &amp;lt;&amp;lt; save html ()&lt;/P&gt;&lt;P&gt;With this it worked.&lt;/P&gt;&lt;P&gt;So there is still the question for the interactive html version.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Markus&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2021 13:35:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Save-dashboard-as-interactive-html/m-p/370624#M62035</guid>
      <dc:creator>markus</dc:creator>
      <dc:date>2021-03-23T13:35:59Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Save dashboard as interactive html</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Save-dashboard-as-interactive-html/m-p/370626#M62036</link>
      <description>&lt;P&gt;For Interactive HTML, you should use&amp;nbsp;&lt;/P&gt;
&lt;PRE class="language-jsl"&gt;&lt;CODE&gt;Save Interactive HTML&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;instead of&amp;nbsp; 'save HTML'&lt;/P&gt;
&lt;P&gt;- John&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2021 13:45:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Save-dashboard-as-interactive-html/m-p/370626#M62036</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2021-03-23T13:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: JSL: Save dashboard as interactive html</title>
      <link>https://community.jmp.com/t5/Discussions/JSL-Save-dashboard-as-interactive-html/m-p/370627#M62037</link>
      <description>&lt;P&gt;Thanks to both of you John and George!&lt;/P&gt;&lt;P&gt;Now the script works fine!&lt;/P&gt;&lt;P&gt;Best Regards&amp;nbsp;&lt;/P&gt;&lt;P&gt;Markus&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2021 13:51:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JSL-Save-dashboard-as-interactive-html/m-p/370627#M62037</guid>
      <dc:creator>markus</dc:creator>
      <dc:date>2021-03-23T13:51:55Z</dc:date>
    </item>
  </channel>
</rss>

