<?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 do I copy the current Graph Builder plot to the clipboard using jsl? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270304#M52629</link>
    <description>&lt;P&gt;There are issues with the cutting off of such copies.&amp;nbsp; You can search the Discussion Community for the details, but I believe there is an issue with systems using multiple monitors....and Mac may also be an issue too.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Concerning your "&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: Arial,Helvetica,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; line-height: 1.7142; orphans: 2; overflow-wrap: break-word; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt; sorcery&lt;/SPAN&gt;" statement.&amp;nbsp; The ins and outs of Display Trees, which are a major component in working with JMP output, is all documented in the Scripting Guide.&amp;nbsp; Reading and understanding how this works opens the window(pun intended) to being able to understand and manipulate JMP in all kinds of ways.&lt;/P&gt;</description>
    <pubDate>Tue, 02 Jun 2020 19:18:51 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2020-06-02T19:18:51Z</dc:date>
    <item>
      <title>How do I copy the current Graph Builder plot to the clipboard using jsl?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270083#M52568</link>
      <description>&lt;P&gt;Is it possible to copy the current Graph Builder plot to the system clipboard using jsl? &amp;nbsp;If so, how?&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:01:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270083#M52568</guid>
      <dc:creator>BHarris</dc:creator>
      <dc:date>2023-06-11T11:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I copy the current Graph Builder plot to the clipboard using jsl?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270094#M52569</link>
      <description>&lt;P&gt;Here is one quick and easy way......using the Big Class data table.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt=current data table();

gb = Graph Builder(
	Variables( X( :weight ), Y( :height ) ),
	Elements( Points( X, Y, Legend( 6 ) ), Smoother( X, Y, Legend( 7 ) ) )
);

gb&amp;lt;&amp;lt;journal;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2020 20:40:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270094#M52569</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-06-01T20:40:43Z</dc:date>
    </item>
    <item>
      <title>Re: How do I copy the current Graph Builder plot to the clipboard using jsl?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270100#M52570</link>
      <description>Hm -- that creates a Graph Builder window then pushes it to the Journal, without affecting the clipboard.&lt;BR /&gt;&lt;BR /&gt;I need to take an *already existing* Graph Builder window and copy the graph to the clipboard.</description>
      <pubDate>Mon, 01 Jun 2020 20:48:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270100#M52570</guid>
      <dc:creator>BHarris</dc:creator>
      <dc:date>2020-06-01T20:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: How do I copy the current Graph Builder plot to the clipboard using jsl?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270104#M52571</link>
      <description>&lt;P&gt;I must be seeing things......I would swear I read "copy to a journal"...….sorry for misleading you&lt;/P&gt;</description>
      <pubDate>Mon, 01 Jun 2020 21:01:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270104#M52571</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-06-01T21:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do I copy the current Graph Builder plot to the clipboard using jsl?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270108#M52572</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/12313"&gt;@BHarris&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I believe the following jsl can do what you want:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Window(1) &amp;lt;&amp;lt; Copy Picture();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Window(1) will point to the last active window (note: not currently active, 0 would point to the script window), and &amp;lt;&amp;lt; Copy Picture() will place an image of that report's display box into the system clipboard. I don't usually like referencing things in this manner and a better practice would be to work with the handle from the platform if you have it, as in the scripting index for Copy Picture():&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = dt &amp;lt;&amp;lt; Bivariate( y( :weight ), x( :height ) );
rbiv = biv &amp;lt;&amp;lt; report;
rbiv &amp;lt;&amp;lt; Copy Picture();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2026"&gt;@jules&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2020 00:24:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270108#M52572</guid>
      <dc:creator>jules</dc:creator>
      <dc:date>2020-06-02T00:24:05Z</dc:date>
    </item>
    <item>
      <title>Re: How do I copy the current Graph Builder plot to the clipboard using jsl?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270244#M52607</link>
      <description>This is very close!! It copies the entire window contents, which includes the local data filter, the "Graph Builder" gray box, etc. Is there any way to just get the plot itself?</description>
      <pubDate>Tue, 02 Jun 2020 16:43:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270244#M52607</guid>
      <dc:creator>BHarris</dc:creator>
      <dc:date>2020-06-02T16:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: How do I copy the current Graph Builder plot to the clipboard using jsl?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270246#M52609</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/12313"&gt;@BHarris&lt;/a&gt;,,&lt;/P&gt;
&lt;P&gt;Sure, you'll need to navigate down the display tree to get to the GraphBuilderBox:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Window(1)[GraphBuilderBox(1)] &amp;lt;&amp;lt; Copy Picture();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2026"&gt;@jules&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2020 16:50:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270246#M52609</guid>
      <dc:creator>jules</dc:creator>
      <dc:date>2020-06-02T16:50:14Z</dc:date>
    </item>
    <item>
      <title>Re: How do I copy the current Graph Builder plot to the clipboard using jsl?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270297#M52626</link>
      <description>Wow, that's some impressive sorcery! That worked!&lt;BR /&gt;&lt;BR /&gt;Curiously, the x-axis label is mostly cut off in the copy, I wonder why that would be? I tried shrinking the font and that made it worse. Mac JMP v14.2.</description>
      <pubDate>Tue, 02 Jun 2020 19:11:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270297#M52626</guid>
      <dc:creator>BHarris</dc:creator>
      <dc:date>2020-06-02T19:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: How do I copy the current Graph Builder plot to the clipboard using jsl?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270304#M52629</link>
      <description>&lt;P&gt;There are issues with the cutting off of such copies.&amp;nbsp; You can search the Discussion Community for the details, but I believe there is an issue with systems using multiple monitors....and Mac may also be an issue too.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Concerning your "&lt;SPAN style="display: inline !important; float: none; background-color: #ffffff; color: #333333; font-family: Arial,Helvetica,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; font-weight: 300; letter-spacing: normal; line-height: 1.7142; orphans: 2; overflow-wrap: break-word; text-align: left; text-decoration: none; text-indent: 0px; text-transform: none; -webkit-text-stroke-width: 0px; white-space: normal; word-spacing: 0px;"&gt; sorcery&lt;/SPAN&gt;" statement.&amp;nbsp; The ins and outs of Display Trees, which are a major component in working with JMP output, is all documented in the Scripting Guide.&amp;nbsp; Reading and understanding how this works opens the window(pun intended) to being able to understand and manipulate JMP in all kinds of ways.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Jun 2020 19:18:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-I-copy-the-current-Graph-Builder-plot-to-the-clipboard/m-p/270304#M52629</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-06-02T19:18:51Z</dc:date>
    </item>
  </channel>
</rss>

