<?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 HOW TO PICK CERTAIN JMP SCRIPT? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/HOW-TO-PICK-CERTAIN-JMP-SCRIPT/m-p/538003#M75928</link>
    <description>&lt;P&gt;Hi, right now i have 6 scripting JMP that i use randomly depend on situation failure of my product. So i have created an example button box that i want to pick certain scripting JMP without opening at file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My question is, can someone help me to open the script and the same time run the script using my button box?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mystylelife19_1-1661663751802.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/45032i84AF8EC45DEC97BE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mystylelife19_1-1661663751802.png" alt="mystylelife19_1-1661663751802.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mystylelife19_2-1661664131650.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/45033i086AC65319C404D0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mystylelife19_2-1661664131650.png" alt="mystylelife19_2-1661664131650.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;User_Input = New Window( "JMP AUTOMATION", &amp;lt;&amp;lt; modal(),
	hlistbox(
	),
	
	Button Box( "BiModal (IL_ALL)",
	),
	Button Box( "SBL Disposition",
	),
	Button Box( "Median Disposition",
	),
	Button Box( "Fit Y By X",
	),
	Button Box( "Time Plot",
	),
	Button Box( "DELETE UNROW COLUMNS",
	),
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 09 Jun 2023 17:08:33 GMT</pubDate>
    <dc:creator>mystylelife19</dc:creator>
    <dc:date>2023-06-09T17:08:33Z</dc:date>
    <item>
      <title>HOW TO PICK CERTAIN JMP SCRIPT?</title>
      <link>https://community.jmp.com/t5/Discussions/HOW-TO-PICK-CERTAIN-JMP-SCRIPT/m-p/538003#M75928</link>
      <description>&lt;P&gt;Hi, right now i have 6 scripting JMP that i use randomly depend on situation failure of my product. So i have created an example button box that i want to pick certain scripting JMP without opening at file.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My question is, can someone help me to open the script and the same time run the script using my button box?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mystylelife19_1-1661663751802.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/45032i84AF8EC45DEC97BE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mystylelife19_1-1661663751802.png" alt="mystylelife19_1-1661663751802.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mystylelife19_2-1661664131650.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/45033i086AC65319C404D0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mystylelife19_2-1661664131650.png" alt="mystylelife19_2-1661664131650.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;User_Input = New Window( "JMP AUTOMATION", &amp;lt;&amp;lt; modal(),
	hlistbox(
	),
	
	Button Box( "BiModal (IL_ALL)",
	),
	Button Box( "SBL Disposition",
	),
	Button Box( "Median Disposition",
	),
	Button Box( "Fit Y By X",
	),
	Button Box( "Time Plot",
	),
	Button Box( "DELETE UNROW COLUMNS",
	),
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Jun 2023 17:08:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/HOW-TO-PICK-CERTAIN-JMP-SCRIPT/m-p/538003#M75928</guid>
      <dc:creator>mystylelife19</dc:creator>
      <dc:date>2023-06-09T17:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: HOW TO PICK CERTAIN JMP SCRIPT?</title>
      <link>https://community.jmp.com/t5/Discussions/HOW-TO-PICK-CERTAIN-JMP-SCRIPT/m-p/538014#M75929</link>
      <description>&lt;P&gt;First, you need to remove the Modal specification.&amp;nbsp; With the Modal specification, you will not be able to transfer control to your selected script, without closing your JMP AUTOMATION window.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
User_Input = New Window( "JMP AUTOMATION", //&amp;lt;&amp;lt; modal(),
	H List Box(),
	Button Box( "Confidence Intervals", 
		Include( "$SAMPLE_SCRIPTS/confidence.jsl" ) ),
	Button Box( "Collinearity", 
		Include( "$SAMPLE_SCRIPTS/democollinearity.jsl" ) )
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The actual specification for the Button Box() is&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;y = Button Box( title, script )&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;See the Scripting Index for details and example.&lt;/P&gt;
&lt;P&gt;Therefore, all you need to do is to add the script to Include the script you want to run.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 28 Aug 2022 07:25:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/HOW-TO-PICK-CERTAIN-JMP-SCRIPT/m-p/538014#M75929</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-08-28T07:25:37Z</dc:date>
    </item>
    <item>
      <title>Re: HOW TO PICK CERTAIN JMP SCRIPT?</title>
      <link>https://community.jmp.com/t5/Discussions/HOW-TO-PICK-CERTAIN-JMP-SCRIPT/m-p/538027#M75930</link>
      <description>great!, it works for me. Thankyou so much!!!</description>
      <pubDate>Sun, 28 Aug 2022 09:26:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/HOW-TO-PICK-CERTAIN-JMP-SCRIPT/m-p/538027#M75930</guid>
      <dc:creator>mystylelife19</dc:creator>
      <dc:date>2022-08-28T09:26:45Z</dc:date>
    </item>
  </channel>
</rss>

