<?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 get browse to folder and select file option inside a modal window? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635481#M83367</link>
    <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;Thanks. I was wondering if the "All Files|*" could be used to filter further. If not I will proceed as is.&lt;/P&gt;</description>
    <pubDate>Thu, 25 May 2023 13:26:37 GMT</pubDate>
    <dc:creator>Neo</dc:creator>
    <dc:date>2023-05-25T13:26:37Z</dc:date>
    <item>
      <title>How to get browse to folder and select file option inside a modal window?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635375#M83355</link>
      <description>&lt;P&gt;My following script works, but I want to have an option for browsing to the relevant folder and then selecting the relevant file (both pre-existing) adjacent to the file/folder selection fields (last 3) in my model window. Say a button saying "Browse" adjacent to the last three fields. I also need the folder/file paths to be captured in the box once they are selected by the user, replacing the default entries. How to achieve this in JSL?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here (1);

dlg = New Window("Please enter the following", &amp;lt;&amp;lt; Modal, &amp;lt;&amp;lt;Return Result,
	Border Box(Top(20), Bottom(0), Left(20), Right(20),
		V List Box(	
					tb1=Text Box("Test Stage "),
					teb1 = Text Edit Box("CAP", &amp;lt;&amp;lt;Set Width(200)),
					teb1&amp;lt;&amp;lt; Set Hint( "CAP or RES or RF" );
					tbs17 = Text Box(""),
                    
                    tb2=Text Box("Duration"),
					teb2 = Text Edit Box("April 2023", &amp;lt;&amp;lt;Set Width(200)),
					teb2&amp;lt;&amp;lt; Set Hint( "e.g. April 2023, Dec 2024 etc" );
					tbs27 = Text Box(""),
		
		            tb3= Text Box("Specify path to file or browse to data file (should pre-exist)"),
					teb3 = Text Edit Box("$Documents\", &amp;lt;&amp;lt;Set Width(200)),
					teb3 &amp;lt;&amp;lt; Set Hint ("e.g. /Tech/");
					tbs37 = Text Box(""),
		            
		            tb4= Text Box("Specify path to file or browse to data summary file (should pre-exist)"),
					teb4 = Text Edit Box("$Documents\", &amp;lt;&amp;lt;Set Width(200)),
					teb4 &amp;lt;&amp;lt; Set Hint ("e.g. /Tech/");
					tbs47 = Text Box(""),
		            
		            tb5= Text Box("Report saving directory (should pre-exist)"),
					teb5 = Text Edit Box("$Documents\Report\", &amp;lt;&amp;lt;Set Width(200)),
					teb5 &amp;lt;&amp;lt; Set Hint ("e.g. /Tech/");
					tbs57 = Text Box(""),
							            
					tb1&amp;lt;&amp;lt; set font style("bold");
					tb2&amp;lt;&amp;lt; set font style("bold");
					tb3&amp;lt;&amp;lt; set font style("bold");
					tb4&amp;lt;&amp;lt; set font style("bold");
					tb5&amp;lt;&amp;lt; set font style("bold");
		);         
	);	
);
TestSatge = dlg["teb1"]; Duration = dlg["teb2"]; dtPickPath = dlg["teb3"]; dt_SumCap = dlg["teb4"];  RptSavePath = dlg["teb5"];  
//Show(TestSatge);Show(Duration); Show (dtPickPath); Show (dt_SumCap); Show (RptSavePath);

If (dlg["Button"]==-1, Throw());&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;In addition, is it possible to have only those files visible in the folders which user browses to, which have the following wild card e.g. CAP* as selected in the TestStage field?&lt;/P&gt;&lt;P&gt;Finally, Is my throw () statement correct? The idea is to stop further execution if the window is close without clicking OK.&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 16:10:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635375#M83355</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-06-09T16:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to get browse to folder and select file option inside a modal window?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635406#M83357</link>
      <description>&lt;P&gt;I'm not sure if it is possible to refine prefix when using Pick File (you can set suffix though). Below is example for Browse button (has been added only to last text edit box)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

set_path = Expr(
	cur_teb = (this &amp;lt;&amp;lt; prev sib);
	new_dir = Pick Directory(cur_teb &amp;lt;&amp;lt; get text);
	If(!IsMissing(new_dir),
		cur_teb &amp;lt;&amp;lt; Set Text(Convert File Path(new_dir, windows));
	);
);

dlg = New Window("Please enter the following",
	&amp;lt;&amp;lt;Modal,
	&amp;lt;&amp;lt;Return Result,
	Border Box(Top(20), Bottom(0), Left(20), Right(20),
		V List Box(
			tb1 = Text Box("Test Stage "),
			teb1 = Text Edit Box("CAP", &amp;lt;&amp;lt;Set Width(200)),
			teb1 &amp;lt;&amp;lt; Set Hint("CAP or RES or RF");
			tbs17 = Text Box("");, 
			
			tb2 = Text Box("Duration"),
			teb2 = Text Edit Box("April 2023", &amp;lt;&amp;lt;Set Width(200)),
			teb2 &amp;lt;&amp;lt; Set Hint("e.g. April 2023, Dec 2024 etc");
			tbs27 = Text Box("");, 
			
			tb3 = Text Box("Specify path to file or browse to data file (should pre-exist)"),
			teb3 = Text Edit Box("$Documents\", &amp;lt;&amp;lt;Set Width(200)),
			teb3 &amp;lt;&amp;lt; Set Hint("e.g. /Tech/");
			tbs37 = Text Box("");, 
			
			tb4 = Text Box("Specify path to file or browse to data summary file (should pre-exist)"),
			teb4 = Text Edit Box("$Documents\", &amp;lt;&amp;lt;Set Width(200)),
			teb4 &amp;lt;&amp;lt; Set Hint("e.g. /Tech/");
			tbs47 = Text Box("");, 
			
			tb5 = Text Box("Report saving directory (should pre-exist)", &amp;lt;&amp;lt; set font style("bold")),
			Lineup Box(N Col(2),
				teb5 = Text Edit Box("$Documents\Report\", &amp;lt;&amp;lt;Set Width(200), &amp;lt;&amp;lt; Set Hint("e.g. /Tech/")),
				Button Box("Browse", &amp;lt;&amp;lt; Set Function(function({this},
					set_path;
				)))
			),
			H List Box(
				Button Box("OK"),
				Button Box("Cancel"),
			),
			tb1 &amp;lt;&amp;lt; set font style("bold");
			tb2 &amp;lt;&amp;lt; set font style("bold");
			tb3 &amp;lt;&amp;lt; set font style("bold");
			tb4 &amp;lt;&amp;lt; set font style("bold");
		)
	)
);


If(dlg["Button"] != 1,
	Throw("Not OK");
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1685013140991.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53110i2832E813D6F59CBA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1685013140991.png" alt="jthi_0-1685013140991.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would change the condition of throw to check if the button is something different than 1 -&amp;gt; Throw()&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2023 11:13:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635406#M83357</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-05-25T11:13:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to get browse to folder and select file option inside a modal window?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635429#M83360</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp; Thanks your browse button works for me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My third and fourth fields are not for folder pick fields but are file picks.&lt;/P&gt;&lt;P&gt;Both files to be picked are JMP files - first one (in third field) is called XXX_TESTSTAGE_data.jmp and the second one (in fourth field) is XXX_TESTSTAGE_cap.JMP i.e. the difference is only &lt;EM&gt;_data&lt;/EM&gt; and &lt;EM&gt;_cap&lt;/EM&gt;, rest remain same.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How to add browse button to folder and then to files preferably with the above suffixes in the third and fourth fields in my modal window script?&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2023 11:47:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635429#M83360</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-05-25T11:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to get browse to folder and select file option inside a modal window?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635438#M83363</link>
      <description>&lt;P&gt;See Pick File from Scripting Index for file selection&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1685015876258.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53112i7657ABC9BE6B432A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1685015876258.png" alt="jthi_0-1685015876258.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;It could be that the suffix is basically only file extension, so you can only limit it to .jmp unless you build your own file selector.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/en/17.0/#page/jmp/file-functions.shtml?os=win&amp;amp;source=application#ww4961728" target="_blank"&gt;https://www.jmp.com/support/help/en/17.0/#page/jmp/file-functions.shtml?os=win&amp;amp;source=application#ww4961728&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1685015979076.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53113iE1284B90416CAC36/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1685015979076.png" alt="jthi_1-1685015979076.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;You might be able to help the user a little bit by using default file argument.&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2023 12:00:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635438#M83363</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-05-25T12:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to get browse to folder and select file option inside a modal window?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635448#M83364</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;Thanks. I have added Pick File and the basic functionality seems to be there in the script below.&lt;/P&gt;&lt;P&gt;Now how/where do I limit the file selection to just JMP files. Also is it possible to use the TestStage entry to limit/filter the number of files visible in the dialog created by Pick File?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
clear log ();
set_f_path = Expr(
	cur_teb = (this &amp;lt;&amp;lt; prev sib);
	new_f_dir = Pick File(cur_teb &amp;lt;&amp;lt; get text);
	If(!IsMissing(new_f_dir),
		cur_teb &amp;lt;&amp;lt; Set Text(Convert File Path(new_f_dir, windows));
	);
);

set_path = Expr(
	cur_teb = (this &amp;lt;&amp;lt; prev sib);
	new_dir = Pick Directory(cur_teb &amp;lt;&amp;lt; get text);
	If(!IsMissing(new_dir),
		cur_teb &amp;lt;&amp;lt; Set Text(Convert File Path(new_dir, windows));
	);
);

dlg = New Window("Please enter the following",
	&amp;lt;&amp;lt;Modal,
	&amp;lt;&amp;lt;Return Result,
	Border Box(Top(20), Bottom(0), Left(20), Right(20),
		V List Box(
			tb1 = Text Box("Test Stage "),
			teb1 = Text Edit Box("CAP", &amp;lt;&amp;lt;Set Width(200)),
			teb1 &amp;lt;&amp;lt; Set Hint("CAP or RES or RF");
			tbs17 = Text Box("");, 
			
			tb2 = Text Box("Duration"),
			teb2 = Text Edit Box("April 2023", &amp;lt;&amp;lt;Set Width(200)),
			teb2 &amp;lt;&amp;lt; Set Hint("e.g. April 2023, Dec 2024 etc");
			tbs27 = Text Box("");, 
			
			tb3 = Text Box("Specify path to file or browse to data file (should pre-exist)",&amp;lt;&amp;lt; set font style("bold")),
			Lineup Box(N Col(2),
			teb3 = Text Edit Box("$Documents\", &amp;lt;&amp;lt;Set Width(200)), &amp;lt;&amp;lt; Set Hint("e.g. /Tech/");
			Button Box("Browse", &amp;lt;&amp;lt; Set Function(function({this},
					set_f_path;
				)))
			),
			tbs37 = Text Box("");, 
			
			tb4 = Text Box("Specify path to file or browse to data summary file (should pre-exist)", &amp;lt;&amp;lt; set font style("bold")),
			Lineup Box(N Col(2),
			teb4 = Text Edit Box("$Documents\", &amp;lt;&amp;lt;Set Width(200)), &amp;lt;&amp;lt; Set Hint("e.g. /Tech/");
			Button Box("Browse", &amp;lt;&amp;lt; Set Function(function({this},
					set_f_path;
				)))
			),
			//teb4 &amp;lt;&amp;lt; Set Hint("e.g. /Tech/");
			tbs47 = Text Box("");, 
			
			tb5 = Text Box("Report saving directory (should pre-exist)", &amp;lt;&amp;lt; set font style("bold")),
			Lineup Box(N Col(2),
				teb5 = Text Edit Box("$Documents\Report\", &amp;lt;&amp;lt;Set Width(200), &amp;lt;&amp;lt; Set Hint("e.g. /Tech/")),
				Button Box("Browse", &amp;lt;&amp;lt; Set Function(function({this},
					set_path;
				)))
			),
			
			tbs57 = Text Box("");, 
			
			H List Box(
				Button Box("OK"),
				Button Box("Cancel"),
			),
			
			tb1 &amp;lt;&amp;lt; set font style("bold");
			tb2 &amp;lt;&amp;lt; set font style("bold");
			//tb3 &amp;lt;&amp;lt; set font style("bold");
			//tb4 &amp;lt;&amp;lt; set font style("bold");
		)
	)
);

TestSatge = dlg["teb1"]; Duration = dlg["teb2"]; dtPickPath = dlg["teb3"]; dt_SumCap = dlg["teb4"];  RptSavePath = dlg["teb5"];  
Show(TestSatge);Show(Duration); Show (dtPickPath); Show (dt_SumCap); Show (RptSavePath);
If(dlg["Button"] != 1,	Throw("Will Stop Further Execution"));&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 25 May 2023 12:19:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635448#M83364</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-05-25T12:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to get browse to folder and select file option inside a modal window?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635474#M83365</link>
      <description>&lt;P&gt;I also get the following the log which I did not get before. hints are no longer working where I have got browse. How to fix?&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Object 'LineUpBox' does not recognize the message 'Set Hint'; perhaps you mean one of these:  &amp;lt;&amp;lt;Set Height&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;FONT color="#008000"&gt;Update- Fixed now. Had incorrect placement of set hint previously.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2023 12:40:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635474#M83365</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-05-25T12:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to get browse to folder and select file option inside a modal window?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635479#M83366</link>
      <description>&lt;P&gt;I don't think you can use TestStage for filtering using Pick File. Pick File in scripting index will tell you how to limit Pick File to only JMP files&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);
Pick File(
	"Select JMP File",
	"$DOCUMENTS",
	{"JMP Files|cap*jmp;jsl;jrn", "All Files|*"},
	1,
	0,
	"newJmpFile.jmp"
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The&amp;nbsp; LineUp message comes because Set Hint is in wrong place (it should be inside Text Edit Box)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1685018230605.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53116i2EC6D32BE718AD2B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1685018230605.png" alt="jthi_0-1685018230605.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit: Set Hint and Set Tip have different uses, so don't get them confused&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2023 12:41:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635479#M83366</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-05-25T12:41:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to get browse to folder and select file option inside a modal window?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635481#M83367</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;Thanks. I was wondering if the "All Files|*" could be used to filter further. If not I will proceed as is.&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2023 13:26:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635481#M83367</guid>
      <dc:creator>Neo</dc:creator>
      <dc:date>2023-05-25T13:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to get browse to folder and select file option inside a modal window?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635495#M83368</link>
      <description>&lt;P&gt;It is very helpful to run examples directly from Scripting Indices run button&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1685019290325.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53119i2691FCC2BB015AEF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1685019290325.png" alt="jthi_0-1685019290325.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Multiple filters will give you these options:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1685019305974.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53120i36E167424E9B321C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1685019305974.png" alt="jthi_1-1685019305974.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;I can edit that same example directly in Scripting Index&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_2-1685019320072.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53121i1BB43125411C551A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_2-1685019320072.png" alt="jthi_2-1685019320072.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;and run it again to see what is different&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_3-1685019333230.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53122i0B99931B819F6906/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_3-1685019333230.png" alt="jthi_3-1685019333230.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and then you can reset it back to original if you want to&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_4-1685019352197.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53123iBD4AEC33F995DE49/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_4-1685019352197.png" alt="jthi_4-1685019352197.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If you are testing anything more complicated I would suggest you copy-paste the example to new script window and edit it there, reduces the chances that it will get reset like might happen in Scripting Index&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 May 2023 12:56:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-get-browse-to-folder-and-select-file-option-inside-a/m-p/635495#M83368</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-05-25T12:56:24Z</dc:date>
    </item>
  </channel>
</rss>

