<?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 Paste graphics from clipboard via JSL; alternatively: how to create a stand-alone legend? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187265#M40593</link>
    <description>&lt;P&gt;I'm not sure what you're trying to do exactly, but Get Picture might be what you need. It gives you a picture object that you can then place into a JMP display tree. Here's an example from the Scripting Index:&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;
New Window( "Example", rbiv &amp;lt;&amp;lt; Get Picture );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Is that what you're looking for? This will just be a static picture, not interactive.&lt;/P&gt;</description>
    <pubDate>Fri, 15 Mar 2019 17:18:09 GMT</pubDate>
    <dc:creator>Melanie_J_Drake</dc:creator>
    <dc:date>2019-03-15T17:18:09Z</dc:date>
    <item>
      <title>How to Paste graphics from clipboard via JSL; alternatively: how to create a stand-alone legend?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187230#M40585</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I have reached the limitations of my&amp;nbsp;(rather limited) scripting skills and am looking for help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I am currently trying to do is to create a legend based on "Color by column" or row legend, which is not appended to a certain plot but could be placed in a seperate Outline Box or such.&lt;/P&gt;&lt;P&gt;Reason I am trying to do this is, that I am working on a JSL script which in the end shall retrieve a whole bunch of data from a database and give out a multitude of visualizations for different process steps with mostly different legends. On top, I want to distribute it as an interactive html file. As there will be a lot of graphs and therefore a lot of scrolling, I would love to generate a Outline Box / Scroll Box alignment, where the legend and maybe some written information should stay visible (in a separate part of the window) when scrolling through the graphs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What i succeeded to do so far is copying the Border Box of a generated legend to the clipboard via (One refers to a generic one way plot with a "row legend" installed)&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;rOne = One &amp;lt;&amp;lt; report;
	Link = rone[Owner Box(1)] &amp;lt;&amp;lt; parent;
	
	show (Link);
	
	Link &amp;lt;&amp;lt; copy picture
		&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;which copies the legend Border Box to the clipboard. I can paste it to word for example and get exactly what I was looking for. Unfortunately, I can't find a JSL command to paste graphics from the clipboard into a visualization. I tried it via "Get clipboard" in a picture Box Environment, but this command seems only to be working for Text.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does anyone know, whether it is possible to paste graphics from the clipboard?&lt;/P&gt;&lt;P&gt;Alternatively, does anyone have a code sniplet which allows to create a stand-alone legend (I tried to convert it from the row states but didn't get very far with that)?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help is greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Greets&lt;/P&gt;&lt;P&gt;Malte&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:01:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187230#M40585</guid>
      <dc:creator>MJE</dc:creator>
      <dc:date>2023-06-11T11:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: How to Paste graphics from clipboard via JSL; alternatively: how to create a stand-alone legend?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187265#M40593</link>
      <description>&lt;P&gt;I'm not sure what you're trying to do exactly, but Get Picture might be what you need. It gives you a picture object that you can then place into a JMP display tree. Here's an example from the Scripting Index:&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;
New Window( "Example", rbiv &amp;lt;&amp;lt; Get Picture );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Is that what you're looking for? This will just be a static picture, not interactive.&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2019 17:18:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187265#M40593</guid>
      <dc:creator>Melanie_J_Drake</dc:creator>
      <dc:date>2019-03-15T17:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to Paste graphics from clipboard via JSL; alternatively: how to create a stand-alone legend?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187275#M40595</link>
      <description>&lt;P&gt;It is possible to paste from clipboard using Main Menu("Paste") but it's not very useful (difiicult to control the timing and target with jsl).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Not sure what you want but I'm sure there are better alternatives than to go via the clipboard here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is one example that may be useful:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
dt = Open("$SAMPLE_DATA/big class.jmp");
ow = Report(dt &amp;lt;&amp;lt; Oneway(Y(:Height), X(:Age)));

rl = dt &amp;lt;&amp;lt; Color By Column(:Age, Make Window With Legend);

nw = New Window("row legend",
    H List Box(Scroll Box(Size(400, 600), V List Box(ow, ow, ow, ow)), rl)
);

// nw &amp;lt;&amp;lt; Save Interactive HTML("path/example.html");
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2019 17:27:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187275#M40595</guid>
      <dc:creator>ms</dc:creator>
      <dc:date>2019-03-15T17:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to Paste graphics from clipboard via JSL; alternatively: how to create a stand-alone legend?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187276#M40596</link>
      <description>&lt;P&gt;There are a few places where JMP uses content from the clipboard - usually paired with a way to copy to the clipboard like &lt;FONT face="courier new,courier"&gt;axis&amp;lt;&amp;lt;Copy Axis Settings&lt;/FONT&gt; and &lt;FONT face="courier new,courier"&gt;axis&amp;lt;&amp;lt;Paste Axis Settings&lt;/FONT&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For your use case, I would recommend copying or moving the boxes rather than creating an image.&amp;nbsp; To copy from a Row Legend you might do something like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = bivariate( y( :weight ), x( :height ) );
rbiv = biv &amp;lt;&amp;lt; report;
framebox = rbiv[Frame Box( 1 )];
framebox &amp;lt;&amp;lt; Row Legend( "age", color( 1 ), Marker( 1 ) );
subset = dt&amp;lt;&amp;lt;Get Rows Where(:height &amp;gt; 58 &amp;amp; :weight &amp;lt; 95);
w = New Window("Custom Report",
	H List Box(
	Graph Box(FrameSize(300,300),MarkerSeg(:weight[subset], :height[subset],Row States(dt, subset))),
	(biv&amp;lt;&amp;lt;Report)[OwnerBox(1)] &amp;lt;&amp;lt; Clone Box;
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The legend will still convert to an image when exported to HTML, but this keeps everything as JMP display boxes within JMP.&amp;nbsp; However, you will note that the cloned legend is not clickable like the original legend.&amp;nbsp; Using &lt;FONT face="courier new,courier"&gt;RemoveFrom()&lt;/FONT&gt; and &lt;FONT face="courier new,courier"&gt;InsertInto()&lt;/FONT&gt;, you can rearrange boxes without having to clone them.&amp;nbsp; This makes a scrollable report similar to what you suggest:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
biv = bivariate( y( :weight ), x( :height ), by( :age ) );
rbiv = biv[1] &amp;lt;&amp;lt; report;
framebox = rbiv[Frame Box( 1 )];
framebox &amp;lt;&amp;lt; Row Legend( "sex", color( 1 ), Marker( 1 ) );&lt;BR /&gt;
// extract legend and report
legend = rbiv[OwnerBox(1)];
legendparent = legend&amp;lt;&amp;lt;parent;
legendbox = RemoveFrom(legendparent, 1);
toprpt = rbiv &amp;lt;&amp;lt; Top Parent;
fullrpt = RemoveFrom(toprpt, 1);
&lt;BR /&gt;// rearrange into a scrolled layout
toprpt &amp;lt;&amp;lt; Append(hlist = HListBox(scrollbox=VScrollBox(800)));
InsertInto(scrollbox, fullrpt, 1);
InsertInto(hlist, legendbox, 2);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2019 17:31:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187276#M40596</guid>
      <dc:creator>danschikore</dc:creator>
      <dc:date>2019-03-15T17:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to Paste graphics from clipboard via JSL; alternatively: how to create a stand-alone legend?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187348#M40614</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4587"&gt;@danschikore&lt;/a&gt;, that was really cool.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is another option, to use a Data Filter Context Box. I think it is a little easier to script and allows multiple filters for the interactive HTML. It does not have the JMP legend, but the data filter is powerful.&amp;nbsp; An example is provided below.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
nw = New Window( "Shared Local Filter",
	Data Filter Context Box(
		H List Box(
			Current Data Table() &amp;lt;&amp;lt; Data Filter( Local, Add Filter( columns( :sex ) )  ),
		ScrollBox(	
			Platform(
				Current Data Table(),
				biv = Bivariate(
					X( :height ),
					Y( :weight ),
					By( :age ),
				)
			)
		)
		)
	)
);

_xxx = biv&amp;lt;&amp;lt; Xpath("//FrameBox");
_xxx &amp;lt;&amp;lt; {MarkerSize(6)};
_xxx &amp;lt;&amp;lt; RowLegend("sex", color(1), Marker(1)); //this will just be a reminder

nw &amp;lt;&amp;lt; Save Interactive HTML("C:/temp/SharedLocalFilter.html");&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14063"&gt;@MJE&lt;/a&gt;&amp;nbsp;if you really have a lot of reports, instead of a scroll, you might want to consider creating your own HTML interface to interactive HTML pages/files created by JMP.&amp;nbsp; There are many examples of html search UI's on the internet.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 17 Mar 2019 07:47:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187348#M40614</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2019-03-17T07:47:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to Paste graphics from clipboard via JSL; alternatively: how to create a stand-alone legend?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187378#M40625</link>
      <description>&lt;P&gt;All these answers are great!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just wanted to add on to gzmorgan0's suggestion about many Interactive HTML files. One way to create an HTML user interface to reference several Interactive HTML files is to use File &amp;gt; Publish from the JMP's main menu. It will create an HTML user interface with thumbnails for your Interactive HTML reports. It can be automated in JSL using New Web Report. Here's an exerpt from the Scripting Index:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp", Invisible );
webreport =
New Web Report(
	Add Report(
		Distribution(
			Continuous Distribution(
				Column( :weight )
			),
			Nominal Distribution( Column( :age ) )
		),
		Title( "Distribution Web Report" ),
		Description(
			"This report was created with the sample found in the Scripting Index"
		)
	)
);
file = webreport &amp;lt;&amp;lt; Save( "$TEMP" );
If( !Is Empty( file ),
	Web( file )
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The example adds only one report, but you can add as many as you like. It also&amp;nbsp;saves to a a temp location, but you could set this to a shared network drive, then send the location to your colleagues.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2019 12:40:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187378#M40625</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2019-03-18T12:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to Paste graphics from clipboard via JSL; alternatively: how to create a stand-alone legend?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187430#M40635</link>
      <description>&lt;P&gt;Thank you very much, &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4587"&gt;@danschikore&lt;/a&gt;. Your solution is great. I had to twist your code a little to fit it into my visualization sheme, but it works really fine.&lt;/P&gt;&lt;P&gt;I'm still having some trouble with the scroll box displays but that rather seems to be some bugs within the interactive html visualization (disappearing data for example; in one particular interesting case the Plots didn't show up in the JMP environment, but did show up (although somewhat distorted) when saved as an interactive html).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your work is greatly appreciated&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Greets&lt;/P&gt;&lt;P&gt;Malte&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2019 16:45:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187430#M40635</guid>
      <dc:creator>MJE</dc:creator>
      <dc:date>2019-03-18T16:45:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to Paste graphics from clipboard via JSL; alternatively: how to create a stand-alone legend?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187431#M40636</link>
      <description>Thank you very much for that quick and easy solution &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4451"&gt;@Melanie_J_Drake&lt;/a&gt;, although i decided for the more ambitious solution of danschikore :)&lt;/img&gt;</description>
      <pubDate>Mon, 18 Mar 2019 16:49:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187431#M40636</guid>
      <dc:creator>MJE</dc:creator>
      <dc:date>2019-03-18T16:49:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to Paste graphics from clipboard via JSL; alternatively: how to create a stand-alone legend?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187434#M40637</link>
      <description>Thanks for your input &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/182"&gt;@ms&lt;/a&gt;.&lt;BR /&gt;I really like the idea to create the legend directly from the data table. That might come in very handy, although at the end of the script, there will be a whole bunch of legend windows floating around...</description>
      <pubDate>Mon, 18 Mar 2019 16:58:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187434#M40637</guid>
      <dc:creator>MJE</dc:creator>
      <dc:date>2019-03-18T16:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to Paste graphics from clipboard via JSL; alternatively: how to create a stand-alone legend?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187435#M40638</link>
      <description>&lt;P&gt;Malte,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please send more details on the Interactive HTML issues.&lt;/P&gt;
&lt;P&gt;If you're not comfortable sharing with the community, please send me a private message or report the issues to tech support.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;~John&lt;/P&gt;</description>
      <pubDate>Mon, 18 Mar 2019 16:59:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187435#M40638</guid>
      <dc:creator>John_Powell_JMP</dc:creator>
      <dc:date>2019-03-18T16:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to Paste graphics from clipboard via JSL; alternatively: how to create a stand-alone legend?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187437#M40639</link>
      <description>Hi John,&lt;BR /&gt;&lt;BR /&gt;I will do so, but only after I tried ot make sure there actually is a topic about the scroll box within the interactive html environment and not rather within my code (this was my first try on using scroll boxes, there might be some room for improvement :)&lt;/img&gt; )&lt;BR /&gt;&lt;BR /&gt;Greets&lt;BR /&gt;Malte</description>
      <pubDate>Mon, 18 Mar 2019 17:05:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/187437#M40639</guid>
      <dc:creator>MJE</dc:creator>
      <dc:date>2019-03-18T17:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to Paste graphics from clipboard via JSL; alternatively: how to create a stand-alone legend?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/854373#M102612</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I want to add a second mode to the AddIn&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;A style="font-family: inherit; background-color: #ffffff;" href="https://marketplace.jmp.com/appdetails/Image+to+Table" target="_blank"&gt;https://marketplace.jmp.com/appdetails/Image+to+Table&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;by&amp;nbsp;&lt;/SPAN&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/610"&gt;@Jed_Campbell&lt;/a&gt;&lt;SPAN&gt;&amp;nbsp;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;The AddIn loads the image from the hard drive. For some cases it can be helpful to pasted the image from the clipboard.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a JSL command to paste graphics from the clipboard?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Mar 2025 11:52:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/854373#M102612</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-03-25T11:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to Paste graphics from clipboard via JSL; alternatively: how to create a stand-alone legend?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/869055#M103194</link>
      <description>&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;Is there a JSL command to paste graphics from the clipboard?&lt;/SPAN&gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;SPAN&gt;I don't believe there is currently a way to do this with JSL. Perhaps this is a good candidate for the &lt;A href="https://community.jmp.com/t5/JMP-Wish-List/idb-p/jmp-wish-list" target="_self"&gt;JMP Wish List&lt;/A&gt;?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 20:30:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/869055#M103194</guid>
      <dc:creator>Jed_Campbell</dc:creator>
      <dc:date>2025-04-17T20:30:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to Paste graphics from clipboard via JSL; alternatively: how to create a stand-alone legend?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/869061#M103195</link>
      <description>&lt;P&gt;ok, here it is :&amp;nbsp;&lt;LI-MESSAGE title="paste graphics from the clipboard" uid="869057" url="https://community.jmp.com/t5/JMP-Wish-List/paste-graphics-from-the-clipboard/m-p/869057#U869057" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 17 Apr 2025 20:37:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Paste-graphics-from-clipboard-via-JSL-alternatively-how/m-p/869061#M103195</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-04-17T20:37:34Z</dc:date>
    </item>
  </channel>
</rss>

