<?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 create a window like the 'show text' of text explorer? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-create-a-window-like-the-show-text-of-text-explorer/m-p/637667#M83550</link>
    <description>&lt;P&gt;I have a column with long texts that I'd like to display to the user in a "notes" like window. Users can copy text from that window. Same as the window text explorer shows when pressing "show text".&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Fri, 09 Jun 2023 16:11:12 GMT</pubDate>
    <dc:creator>RonB</dc:creator>
    <dc:date>2023-06-09T16:11:12Z</dc:date>
    <item>
      <title>How to create a window like the 'show text' of text explorer?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-create-a-window-like-the-show-text-of-text-explorer/m-p/637667#M83550</link>
      <description>&lt;P&gt;I have a column with long texts that I'd like to display to the user in a "notes" like window. Users can copy text from that window. Same as the window text explorer shows when pressing "show text".&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 16:11:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-create-a-window-like-the-show-text-of-text-explorer/m-p/637667#M83550</guid>
      <dc:creator>RonB</dc:creator>
      <dc:date>2023-06-09T16:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a window like the 'show text' of text explorer?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-create-a-window-like-the-show-text-of-text-explorer/m-p/637676#M83551</link>
      <description>&lt;P&gt;I haven't used Text Explorer that much and I don't know where this "Show Text" option is. How should the textbox be built/updated to your "notes" window? All columns in one text box? All rows have their own text box? User selected rows have text box?&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 05:41:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-create-a-window-like-the-show-text-of-text-explorer/m-p/637676#M83551</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-06-01T05:41:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a window like the 'show text' of text explorer?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-create-a-window-like-the-show-text-of-text-explorer/m-p/637786#M83562</link>
      <description>&lt;P&gt;I think the text explore is dropping the text into a "Script Box", kind of like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Script = Script Box(
	"// This window is editable.",
	"Text",
	600,
	200
);
New Window( "This is a script box", Script );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The first argument can be a variable with a lot of text assigned to it, like this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&lt;BR /&gt;Names Default To Here( 1 );&lt;BR /&gt;&lt;BR /&gt;mytext = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris auctor nibh magna, ut dapibus, 

Donec tempus felis vitae ipsum rhoncus, convallis aliquet augue egestas. Proin eget odio id lectus, 
Phasellus finibus ultrices tellus. Nullam sed sem lorem. In hac habitasse platea dictumst. Aliquam, 

In nec est auctor, ultricies erat a, laoreet lectus. Nam pellentesque lobortis diam, et semper leo, 
Morbi condimentum sagittis est, ut congue mauris dignissim in. In hac habitasse platea dictumst.
";

Script = Script Box(
	mytext,
	"Text",
	600,
	200
);
New Window( "This is a script box", Script );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 01 Jun 2023 09:00:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-create-a-window-like-the-show-text-of-text-explorer/m-p/637786#M83562</guid>
      <dc:creator>Byron_JMP</dc:creator>
      <dc:date>2023-06-01T09:00:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a window like the 'show text' of text explorer?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-create-a-window-like-the-show-text-of-text-explorer/m-p/637846#M83573</link>
      <description>&lt;P&gt;A text edit box might be better suited to displaying/editing/selecting text.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

mytext = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris auctor nibh magna, ut dapibus, 

Donec tempus felis vitae ipsum rhoncus, convallis aliquet augue egestas. Proin eget odio id lectus, 
Phasellus finibus ultrices tellus. Nullam sed sem lorem. In hac habitasse platea dictumst. Aliquam, 

In nec est auctor, ultricies erat a, laoreet lectus. Nam pellentesque lobortis diam, et semper leo, 
Morbi condimentum sagittis est, ut congue mauris dignissim in. In hac habitasse platea dictumst.
";

nw = new window("Text Output",
	teb = text edit box(mytext)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Here's the output with some text selected:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pmroz_0-1685621537478.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53325i23C693EB03AF41DB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pmroz_0-1685621537478.png" alt="pmroz_0-1685621537478.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 12:12:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-create-a-window-like-the-show-text-of-text-explorer/m-p/637846#M83573</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2023-06-01T12:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a window like the 'show text' of text explorer?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-create-a-window-like-the-show-text-of-text-explorer/m-p/637888#M83576</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/4550"&gt;@pmroz&lt;/a&gt;&amp;nbsp;I agree, the text box is likely the better choice for displaying text; however, the script box has some handy properties such as the line numbering that is automatic and the one click option to send the text to a data table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In text analysis, these features can be used to generate a subset of documents to continue working on.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 13:57:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-create-a-window-like-the-show-text-of-text-explorer/m-p/637888#M83576</guid>
      <dc:creator>Byron_JMP</dc:creator>
      <dc:date>2023-06-01T13:57:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a window like the 'show text' of text explorer?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-create-a-window-like-the-show-text-of-text-explorer/m-p/637898#M83578</link>
      <description>&lt;P&gt;Good to know Byron thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 01 Jun 2023 14:22:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-create-a-window-like-the-show-text-of-text-explorer/m-p/637898#M83578</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2023-06-01T14:22:00Z</dc:date>
    </item>
  </channel>
</rss>

