<?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 Showing texts and plots on the same window in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Showing-texts-and-plots-on-the-same-window/m-p/13815#M12985</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wrote a jmp script that produces a report with a vertical outline of text. I have several radio buttons in the report. When a radio button is&lt;BR /&gt;pressed several data tables or graphs are produced.&amp;nbsp; The radio button is connected to a script that generates the graphs and that is reported at the bottom of the jsl file&lt;BR /&gt;generating my report.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;I would like to organize the report with two columns: one with the text (outline and radio buttons, on the left) and the other (on the right) with the&lt;BR /&gt;graphs. &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Unfortunately the graphs are generated in separate Windows (when clicking on the radio button a new windows opens). Looking at some JMP&lt;BR /&gt;add-ins I think I should include the graphs I want right at the beginning on my report and just populate the graphs with data when I click on the radio button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have a JSL code that does something like this that I can look at? Or can anyone suggest how to solve my problem? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many many tanks in advance,&lt;/P&gt;&lt;P&gt;Marcello.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Aug 2015 15:47:40 GMT</pubDate>
    <dc:creator>MFVIT</dc:creator>
    <dc:date>2015-08-12T15:47:40Z</dc:date>
    <item>
      <title>Showing texts and plots on the same window</title>
      <link>https://community.jmp.com/t5/Discussions/Showing-texts-and-plots-on-the-same-window/m-p/13815#M12985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wrote a jmp script that produces a report with a vertical outline of text. I have several radio buttons in the report. When a radio button is&lt;BR /&gt;pressed several data tables or graphs are produced.&amp;nbsp; The radio button is connected to a script that generates the graphs and that is reported at the bottom of the jsl file&lt;BR /&gt;generating my report.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;I would like to organize the report with two columns: one with the text (outline and radio buttons, on the left) and the other (on the right) with the&lt;BR /&gt;graphs. &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Unfortunately the graphs are generated in separate Windows (when clicking on the radio button a new windows opens). Looking at some JMP&lt;BR /&gt;add-ins I think I should include the graphs I want right at the beginning on my report and just populate the graphs with data when I click on the radio button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anyone have a JSL code that does something like this that I can look at? Or can anyone suggest how to solve my problem? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many many tanks in advance,&lt;/P&gt;&lt;P&gt;Marcello.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2015 15:47:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Showing-texts-and-plots-on-the-same-window/m-p/13815#M12985</guid>
      <dc:creator>MFVIT</dc:creator>
      <dc:date>2015-08-12T15:47:40Z</dc:date>
    </item>
    <item>
      <title>Re: Showing texts and plots on the same window</title>
      <link>https://community.jmp.com/t5/Discussions/Showing-texts-and-plots-on-the-same-window/m-p/13816#M12986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you launch a platform with JSL, the platform looks to see if it is in another display box.&amp;nbsp; If not, it creates a window for itself.&amp;nbsp; If it is in a display box, the platform just anchors itself to the parent box, which may, or may not, be in a window.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;BR /&gt;&lt;P&gt;Distribution(&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;nbsp; Continuous Distribution( Column( :weight ) ),&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;nbsp; Nominal Distribution( Column( :age ) )&lt;/P&gt;&lt;BR /&gt;&lt;P&gt;);&lt;/P&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;opens a new window to hold the distributions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;BR /&gt;&lt;P&gt;x = V List Box( &lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;nbsp; Distribution( &lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Continuous Distribution( Column( :weight ) ), &lt;/P&gt;&lt;BR /&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Nominal Distribution( Column( :age ) ) &lt;/P&gt;&lt;BR /&gt;&lt;P&gt;) );&lt;/P&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just returns a display box to the variable x without opening a window.&amp;nbsp; To see it,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __jive_macro_name="quote" class="jive_text_macro jive_macro_quote"&gt;&lt;BR /&gt;&lt;P&gt;New Window( "My Window", x )&lt;/P&gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above, the VListBox could hold several platforms, stacked vertically, and you can add HListBox to hold several VListBoxes and make a bunch of columns, etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2015 20:16:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Showing-texts-and-plots-on-the-same-window/m-p/13816#M12986</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2015-08-12T20:16:13Z</dc:date>
    </item>
    <item>
      <title>Re: Showing texts and plots on the same window</title>
      <link>https://community.jmp.com/t5/Discussions/Showing-texts-and-plots-on-the-same-window/m-p/13817#M12987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="https://community.jmp.com/message/217499" target="_blank"&gt;Empty Control Chart Windows..........Weird Situation.&lt;/A&gt; may be this will help a bit.&lt;/P&gt;&lt;P&gt;I didn't have text in my requirements but three different charts which I appended into same window to see all together.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like &lt;A href="https://community.jmp.com/people/Craige@JMP" target="_blank"&gt;Craige@JMP&lt;/A&gt; mentioned is the best way to look at it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Nov 2016 08:50:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Showing-texts-and-plots-on-the-same-window/m-p/13817#M12987</guid>
      <dc:creator>vs90</dc:creator>
      <dc:date>2016-11-14T08:50:18Z</dc:date>
    </item>
    <item>
      <title>Re: Showing texts and plots on the same window</title>
      <link>https://community.jmp.com/t5/Discussions/Showing-texts-and-plots-on-the-same-window/m-p/13818#M12988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Following Craig's explanation, I would suggest that you script use a horizontal list box as the outer container. It should contain just two items, both vertical list boxes. The first vertical list box will contain the text and radio buttons. The second will contain nothing at all to begin with. Save the reference to this box in a variable so you can refer to it when you send a message. The logic of the script for the check box will append or delete the platforms as needed. Here is the example for you to study:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="9484_Capture.JPG" style="width: 767px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/2072iAABED748726100BF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="9484_Capture.JPG" alt="9484_Capture.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2016 00:23:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Showing-texts-and-plots-on-the-same-window/m-p/13818#M12988</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2016-10-19T00:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: Showing texts and plots on the same window</title>
      <link>https://community.jmp.com/t5/Discussions/Showing-texts-and-plots-on-the-same-window/m-p/13819#M12989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mark and Craig,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks for your useful suggestions. I was able to create a window with two columns, with text and plots. Once I created a reference to the display, I used the append command to make the plot appear on the display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marcello.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Da: MarkBailey  &lt;/P&gt;&lt;P&gt;Inviato: giovedì 13 agosto 2015 16.27&lt;/P&gt;&lt;P&gt;A: Marcello Fidaleo&lt;/P&gt;&lt;P&gt;Oggetto: Re:  - Showing texts and plots on the same window&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &amp;lt;https://community.jmp.com/?utm_source=JIVE&amp;amp;utm_medium=email&amp;amp;utm_campaign=System%20Email%20Tracking&amp;gt; JMP User Community&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Showing texts and plots on the same window &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reply from MarkBailey &amp;lt;https://community.jmp.com/people/MarkBailey?et=watches.email.thread&amp;gt;  in Discussions - View the full discussion &amp;lt;https://community.jmp.com/message/222659?et=watches.email.thread#222659&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Aug 2015 14:27:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Showing-texts-and-plots-on-the-same-window/m-p/13819#M12989</guid>
      <dc:creator>MFVIT</dc:creator>
      <dc:date>2015-08-15T14:27:42Z</dc:date>
    </item>
  </channel>
</rss>

