<?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: HTML DOCUMENTS in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/HTML-DOCUMENTS/m-p/286738#M55345</link>
    <description>&lt;P&gt;Craig's answer is excellent, but I wanted to make sure you knew about JMP's capability to build a Web Report page with an index to multiple interactive HTML files in case it may offer an acceptable solution.&amp;nbsp; You can read about it here:&amp;nbsp;&lt;A href="https://www.jmp.com/support/help/en/15.2/index.shtml#page/jmp/create-a-web-report-2.shtml" target="_blank" rel="noopener"&gt;https://www.jmp.com/support/help/en/15.2/index.shtml#page/jmp/create-a-web-report-2.shtml&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The link also describes the JMP Public and JMP Live options Craig suggested. It won't give you exactly what you describe, but it won't require any HTML programming.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you prefer to use iframes as Craig suggested, there's another example with some iframe use here&amp;nbsp;&lt;LI-MESSAGE title="How to add HTML links to JMP interactive HTML files" uid="232170" url="https://community.jmp.com/t5/Discussions/How-to-add-HTML-links-to-JMP-interactive-HTML-files/m-p/232170#U232170" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;~John&lt;/P&gt;</description>
    <pubDate>Wed, 19 Aug 2020 14:15:28 GMT</pubDate>
    <dc:creator>John_Powell_JMP</dc:creator>
    <dc:date>2020-08-19T14:15:28Z</dc:date>
    <item>
      <title>HTML DOCUMENTS</title>
      <link>https://community.jmp.com/t5/Discussions/HTML-DOCUMENTS/m-p/286478#M55287</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to know what are the possible ways to attach a number of HTML reports, possibly 60 to 70 in total to a main HTML Document.&lt;SPAN style="font-family: inherit;"&gt;&amp;nbsp;The individual reports will have some text, lables and JMP GRAPHS, JMP DISTRIBUTION tables. The main HTML document will be a summary or analysis of the individual reports, also contining JMP GRAPHS and the HTML document will have a text box in order to comment and summarise the analysis. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;1) I could imagine a list of links to each individual HTML report. Is this feasible?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;2) Is the TEXT box on the main HTML document feasible?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Warren&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 23:35:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/HTML-DOCUMENTS/m-p/286478#M55287</guid>
      <dc:creator>watoft</dc:creator>
      <dc:date>2023-06-09T23:35:13Z</dc:date>
    </item>
    <item>
      <title>Re: HTML DOCUMENTS</title>
      <link>https://community.jmp.com/t5/Discussions/HTML-DOCUMENTS/m-p/286616#M55317</link>
      <description>&lt;P&gt;There may be better ways to do this, either using Save As HTML or&amp;nbsp;&lt;A href="https://public.jmp.com/featured" target="_blank" rel="noopener"&gt;JMP Public&lt;/A&gt;&amp;nbsp;or&amp;nbsp;&lt;A href="https://www.jmp.com/en_us/software/collaborative-analytics-software.html" target="_blank" rel="noopener"&gt;JMP Live&lt;/A&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, here's a proof-of-concept for creating custom HTML that does what you describe. JMP creates HTML output as a complete web page. This example uses iframes to display the individual web pages within another page; the left side iframe is some sort of summary, the right side iframe some sort of subset. You should find someone that knows more about HTML than I do to put this together better.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JMP reports, side-by-side in a browser, with an index below the right side report" style="width: 915px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/26283i599BAAB80AB548B9/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="JMP reports, side-by-side in a browser, with an index below the right side report" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;JMP reports, side-by-side in a browser, with an index below the right side report&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;path = "$temp/deletmeHTML/";
Create Directory( path );

// make some sample HTML

dt = Open( "$sample_data/big class.jmp" );

// the LEFT side output

overview = Distribution(
	Continuous Distribution( Column( :weight ), Quantiles( 0 ), Summary Statistics( 0 ) ),
	Nominal Distribution( Column( :age ), Frequencies( 0 ) )
);

overview &amp;lt;&amp;lt; Save  HTML( path || "overview.html" );
overview &amp;lt;&amp;lt; closewindow;

// the RIGHT side output

links = "";
For( global:age = Col Min( dt:age ), global:age &amp;lt;= Col Max( dt:age ), global:age += 1,
	agegroup = Distribution( Continuous Distribution( Column( :weight ), Quantiles( 0 ), Summary Statistics( 0 ) ), where( dt:age == global:age ) );
	report(agegroup)[Outlinebox(1)]&amp;lt;&amp;lt;settitle("age group "||char(global:age));// put something useful in place of "distributions"
	agegroup &amp;lt;&amp;lt; Save  HTML( path || "age" || Char( global:age ) || ".html" );
	agegroup &amp;lt;&amp;lt; closewindow;

	// build the links for the document below
	
	links = links || "\[
	&amp;lt;a href="#" id="age]\" || Char( global:age ) || "\[" onClick="change(this.id)"&amp;gt;]\" || Char( global:age ) || "\[&amp;lt;/a&amp;gt;
	]\";

);
Close( dt, nosave );

// build a container page that embeds JMP output via iframe
// https://www.sitepoint.com/community/t/how-to-change-iframes-content/1475/3

html = // this is a proof of concept, not great HTML...
"\[
&amp;lt;html&amp;gt;
  &amp;lt;head&amp;gt;
	&amp;lt;title&amp;gt;JSL+HTML example&amp;lt;/title&amp;gt;
	&amp;lt;style&amp;gt;
		iframe{
			width: 40%; height: 500px;
			border: 2px solid #ccc;
		}
	&amp;lt;/style&amp;gt;	
	&amp;lt;script&amp;gt;
		function change(newPage){
			document.getElementById('myframe').src=newPage + ".html";
		}
	&amp;lt;/script&amp;gt;
  &amp;lt;/head&amp;gt;
  &amp;lt;body&amp;gt;
	&amp;lt;iframe src="overview.html"&amp;gt;&amp;lt;/iframe&amp;gt;
	&amp;lt;iframe src="age17.html" id="myframe" &amp;gt;&amp;lt;/iframe&amp;gt;

	&amp;lt;div align="center"&amp;gt;
	  &amp;lt;span id="menu"&amp;gt;
]\"
 || links || "\[
	  &amp;lt;/span&amp;gt;
	&amp;lt;/div&amp;gt;
  &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
]\";
htmlfile = Save Text File( path || "index.html", html );

// launch the web page. Your browser might think pages loaded from your computer
// come from different sites (chrome). Some iframe tricks for sizing do not work locally.
Run Program(
	Executable( "CMD.EXE" ), // probably use default browser on win
	Options( {"/a", "/q", "/c", htmlfile} ),
	ReadFunction( Function( {this}, Write( this &amp;lt;&amp;lt; read ) ) )
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;The RunProgram at the end is for Windows; using Open(htmlfile) might work better, but it was using IE rather than my preferred browser. Using SaveAsHTML was confusing because the selection does not work across frames. I did not find iframe scripting examples for sizing the iframes that worked locally on chrome on my local machine. They might work fine from a proper site.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 02:04:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/HTML-DOCUMENTS/m-p/286616#M55317</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2020-08-19T02:04:41Z</dc:date>
    </item>
    <item>
      <title>Re: HTML DOCUMENTS</title>
      <link>https://community.jmp.com/t5/Discussions/HTML-DOCUMENTS/m-p/286738#M55345</link>
      <description>&lt;P&gt;Craig's answer is excellent, but I wanted to make sure you knew about JMP's capability to build a Web Report page with an index to multiple interactive HTML files in case it may offer an acceptable solution.&amp;nbsp; You can read about it here:&amp;nbsp;&lt;A href="https://www.jmp.com/support/help/en/15.2/index.shtml#page/jmp/create-a-web-report-2.shtml" target="_blank" rel="noopener"&gt;https://www.jmp.com/support/help/en/15.2/index.shtml#page/jmp/create-a-web-report-2.shtml&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;The link also describes the JMP Public and JMP Live options Craig suggested. It won't give you exactly what you describe, but it won't require any HTML programming.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you prefer to use iframes as Craig suggested, there's another example with some iframe use here&amp;nbsp;&lt;LI-MESSAGE title="How to add HTML links to JMP interactive HTML files" uid="232170" url="https://community.jmp.com/t5/Discussions/How-to-add-HTML-links-to-JMP-interactive-HTML-files/m-p/232170#U232170" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;Hope this helps.&lt;/P&gt;
&lt;P&gt;~John&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 14:15:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/HTML-DOCUMENTS/m-p/286738#M55345</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2020-08-19T14:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: HTML DOCUMENTS</title>
      <link>https://community.jmp.com/t5/Discussions/HTML-DOCUMENTS/m-p/286755#M55346</link>
      <description>Hi John &amp;amp; Craig,&lt;BR /&gt;&lt;BR /&gt;Thanks for coming back to me and your interest.&lt;BR /&gt;&lt;BR /&gt;OK, so if I develop standard analysis in JMP which produce JMP GRAHPS and JMP DISTRIBUTION TABLES and other analysis in a standard format from a database that I can update weekly. Can the Web Report developed as a standard Template which I can just update?&lt;BR /&gt;&lt;BR /&gt;Warren&lt;BR /&gt;</description>
      <pubDate>Wed, 19 Aug 2020 14:27:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/HTML-DOCUMENTS/m-p/286755#M55346</guid>
      <dc:creator>watoft</dc:creator>
      <dc:date>2020-08-19T14:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: HTML DOCUMENTS</title>
      <link>https://community.jmp.com/t5/Discussions/HTML-DOCUMENTS/m-p/286776#M55351</link>
      <description>&lt;P&gt;Yes, you can automate weekly publishing using JSL.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look for the function&amp;nbsp;&lt;EM&gt;New Web Report( )&amp;nbsp;&lt;/EM&gt;in the Scripting Index.&lt;/P&gt;
&lt;P&gt;It can be used to build the Web Report and add individual HTML reports with descriptions like when you use File&amp;gt;Publish.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can learn more about automating in&amp;nbsp;&lt;LI-MESSAGE title="Automated Report Creation: From Data Import to Publication (2019-US-45MP-184)" uid="223357" url="https://community.jmp.com/t5/Discovery-Summit-Tucson-2019/Automated-Report-Creation-From-Data-Import-to-Publication-2019/m-p/223357#U223357" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-tkb-thread lia-fa-icon lia-fa-tkb lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;It shows how to Publish to JMP Public, but the same methods can be used to publish to a local or shared file system.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;~John&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 15:30:46 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/HTML-DOCUMENTS/m-p/286776#M55351</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2020-08-19T15:30:46Z</dc:date>
    </item>
  </channel>
</rss>

