<?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 make JMP home window invisible ? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-make-JMP-home-window-invisible/m-p/775373#M95752</link>
    <description>&lt;P&gt;Are you running an external Python environment and launching JMP with command line tools from Python?&amp;nbsp; Is so, you might try using the new Python Integration in JMP 18, with comes with it's own Python environment and is more directly connected with JMP.&amp;nbsp; See&amp;nbsp;&lt;A href="https://community.jmp.com/t5/JMPer-Cable/Getting-started-with-Python-integration-in-JMP-18/ba-p/768700" target="_blank"&gt;https://community.jmp.com/t5/JMPer-Cable/Getting-started-with-Python-integration-in-JMP-18/ba-p/768700&lt;/A&gt;&amp;nbsp;and&amp;nbsp;&lt;A href="https://community.jmp.com/t5/JMPer-Cable/JMP-is-Pythonic-Enhanced-Python-Integration-in-JMP-18/ba-p/723997" target="_blank"&gt;JMP is Pythonic! Enhanced Python Integration in JMP 18 - JMP User Community&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 25 Jul 2024 14:40:59 GMT</pubDate>
    <dc:creator>MathStatChem</dc:creator>
    <dc:date>2024-07-25T14:40:59Z</dc:date>
    <item>
      <title>How to make JMP home window invisible ?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-JMP-home-window-invisible/m-p/774470#M95628</link>
      <description>&lt;P&gt;Hi all,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I's using JMP 18 and&amp;nbsp;I have a Python script that runs several tests, queries data from SQL, and saves the results with different names. I then execute JSL scripts for plotting the data. However, each time a JSL script runs, it opens the JMP Home window. If I run 10 tests simultaneously, it opens 10 JMP Home windows, which blocks my screen view. Although I'm making the data tables invisible, I still want to find a way to make the JMP Home window invisible as well. Is there any way to achieve this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is my sample code for one test.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// Load the selected CSV file
dt = Open("C:\Users\Documents\Workspace\Projects\BanffC\Experiments\sanity.csv", invisible);

// Create the Graph Builder
graph = dt &amp;lt;&amp;lt; Graph Builder(
    Size( 1002, 693 ),
    Variables(
        X( :rf_frequency_hz ),
        Y( :evm_db ),
        Group X( :mcs ),
        Group Y( :board_id ),
        Overlay( :run_tag )
    ),
    Elements( Points( X, Y, Legend( 13 ) ), Line( X, Y, Legend( 15 ) ) ),
    Local Data Filter(
        Add Filter(
            columns( :bw_mhz ),
            Modeling Type( :bw_mhz, Nominal ),
            Where( :bw_mhz == 8 ),
            Display( :bw_mhz, N Items( 4 ) )
        )
    )
);

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Jul 2024 04:19:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-JMP-home-window-invisible/m-p/774470#M95628</guid>
      <dc:creator>mati</dc:creator>
      <dc:date>2024-07-22T04:19:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to make JMP home window invisible ?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-JMP-home-window-invisible/m-p/775144#M95718</link>
      <description>&lt;P&gt;Try adding this to your script:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Main Menu( "Hide", "JMP Home Window" )&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 24 Jul 2024 17:07:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-JMP-home-window-invisible/m-p/775144#M95718</guid>
      <dc:creator>mmarchandFSLR</dc:creator>
      <dc:date>2024-07-24T17:07:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to make JMP home window invisible ?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-JMP-home-window-invisible/m-p/775298#M95736</link>
      <description>&lt;P&gt;It works if JMP is already open and you're running a script—the script will hide the home window. However, if you're running a .jsl script that opens JMP and creates plots, the home window remains active with each plot.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2024 04:00:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-JMP-home-window-invisible/m-p/775298#M95736</guid>
      <dc:creator>mati</dc:creator>
      <dc:date>2024-07-25T04:00:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to make JMP home window invisible ?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-JMP-home-window-invisible/m-p/775338#M95743</link>
      <description>&lt;P&gt;Interestingly, this works:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\Big Class.jmp" );
Wait( 0 );
Main Menu( "Hide", "JMP Home Window" );
dst = dt &amp;lt;&amp;lt; Run Script( "Distribution" );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;But it leaves your data table visible.&amp;nbsp; This gives you an invisible table but leaves the home window visible:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\Big Class.jmp", invisible );
Wait( 0 );
Main Menu( "Hide", "JMP Home Window" );
dst = dt &amp;lt;&amp;lt; Run Script( "Distribution" );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;After testing a few different possibilities, this is the best option I found that works to hide both the data table you open and the home 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" );
Wait( 0 );
Main Menu( "Hide", "JMP Home Window" );
dt &amp;lt;&amp;lt; Show Window( 0 );
dst = dt &amp;lt;&amp;lt; Run Script( "Distribution" );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Without the Wait(), it fails.&amp;nbsp; If you hide the data table first, the home window stays visible.&amp;nbsp; Interesting quirks.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2024 12:06:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-JMP-home-window-invisible/m-p/775338#M95743</guid>
      <dc:creator>mmarchandFSLR</dc:creator>
      <dc:date>2024-07-25T12:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to make JMP home window invisible ?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-JMP-home-window-invisible/m-p/775373#M95752</link>
      <description>&lt;P&gt;Are you running an external Python environment and launching JMP with command line tools from Python?&amp;nbsp; Is so, you might try using the new Python Integration in JMP 18, with comes with it's own Python environment and is more directly connected with JMP.&amp;nbsp; See&amp;nbsp;&lt;A href="https://community.jmp.com/t5/JMPer-Cable/Getting-started-with-Python-integration-in-JMP-18/ba-p/768700" target="_blank"&gt;https://community.jmp.com/t5/JMPer-Cable/Getting-started-with-Python-integration-in-JMP-18/ba-p/768700&lt;/A&gt;&amp;nbsp;and&amp;nbsp;&lt;A href="https://community.jmp.com/t5/JMPer-Cable/JMP-is-Pythonic-Enhanced-Python-Integration-in-JMP-18/ba-p/723997" target="_blank"&gt;JMP is Pythonic! Enhanced Python Integration in JMP 18 - JMP User Community&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2024 14:40:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-JMP-home-window-invisible/m-p/775373#M95752</guid>
      <dc:creator>MathStatChem</dc:creator>
      <dc:date>2024-07-25T14:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to make JMP home window invisible ?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-JMP-home-window-invisible/m-p/775532#M95775</link>
      <description>&lt;P&gt;This worked - Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jul 2024 01:32:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-JMP-home-window-invisible/m-p/775532#M95775</guid>
      <dc:creator>mati</dc:creator>
      <dc:date>2024-07-26T01:32:21Z</dc:date>
    </item>
  </channel>
</rss>

