<?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: How to Journal platforms in a new window? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-Journal-platforms-in-a-new-window/m-p/254005#M49869</link>
    <description>Great! Thanks for a swift reply. This works!</description>
    <pubDate>Tue, 24 Mar 2020 16:21:22 GMT</pubDate>
    <dc:creator>AD1</dc:creator>
    <dc:date>2020-03-24T16:21:22Z</dc:date>
    <item>
      <title>How to Journal platforms in a new window?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Journal-platforms-in-a-new-window/m-p/253984#M49864</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a simple question that I cannot figure out.&lt;/P&gt;&lt;P&gt;I have created a simple UI with different ui elements and contain&lt;/P&gt;&lt;P&gt;various platforms (distributions, etc.). I know that to make these static,&lt;/P&gt;&lt;P&gt;I need to journal them. All plots are embedded in the new window&lt;/P&gt;&lt;P&gt;within different outline, V Line and H line boxes and use different&lt;/P&gt;&lt;P&gt;filters from the same data table. The new window resides in a&amp;nbsp;&lt;/P&gt;&lt;P&gt;jsl script file and I make it executable with "//!". So there is no report&lt;/P&gt;&lt;P&gt;or journal in the beginning.&lt;/P&gt;&lt;P&gt;Rough code structure :&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;nw = New Window(
V Line Box(),
H Line Box();
Outline Box();

// Has an attached function that creates a plot inside the above outline box.
Button Box();
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to know how can I journal them&amp;nbsp;without moving them out in a new window?&lt;/P&gt;&lt;P&gt;I would like to keep the plot where it is and make it static but I want the rest of the&amp;nbsp;&lt;/P&gt;&lt;P&gt;window that contains buttons and combo boxes etc. to stay responsive.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your inputs and possible solutions!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Mar 2020 15:16:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Journal-platforms-in-a-new-window/m-p/253984#M49864</guid>
      <dc:creator>AD1</dc:creator>
      <dc:date>2020-03-24T15:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to Journal platforms in a new window?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Journal-platforms-in-a-new-window/m-p/253994#M49866</link>
      <description>&lt;P&gt;Here is a simple example of replacing an active plot with a static picture of the plot, without changing anything else in the window&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt=open("$SAMPLE_DATA/big class.jmp");

// Create a Display Window with a button box
nw=New window("Example",
	V List Box(
		Button Box("Push Me",
			dt &amp;lt;&amp;lt; Bivariate(x(:weight), y(:Height))
		),
		bb=border box(top(10,bottom(10),left(10),right(10),sides(15)))
	)
);

// Add in a Platform Display
bb &amp;lt;&amp;lt; append( ow=dt&amp;lt;&amp;lt;Oneway(
	Y( :height ),
	X( :age ),
	Means and Std Dev( 1 ),
	Box Plots( 1 ),
	Mean Error Bars( 1 ),
	Std Dev Lines( 1 )
));

// Add in a new copy of the graph, but as a static picture
report(ow)[OutlineBox(1)]&amp;lt;&amp;lt;
prepend((report(ow)[PictureBox(1)])&amp;lt;&amp;lt;get picture);

// Delete the old active graph
report(ow)[PictureBox(1)]&amp;lt;&amp;lt;delete;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 24 Mar 2020 15:57:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Journal-platforms-in-a-new-window/m-p/253994#M49866</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-03-24T15:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to Journal platforms in a new window?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Journal-platforms-in-a-new-window/m-p/254005#M49869</link>
      <description>Great! Thanks for a swift reply. This works!</description>
      <pubDate>Tue, 24 Mar 2020 16:21:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Journal-platforms-in-a-new-window/m-p/254005#M49869</guid>
      <dc:creator>AD1</dc:creator>
      <dc:date>2020-03-24T16:21:22Z</dc:date>
    </item>
  </channel>
</rss>

