<HTML><FONT FACE=arial,helvetica><FONT  SIZE=2 FAMILY="SANSSERIF" FACE="Arial" LANG="0">Scott suggests:<BR>
<BR>
[snip]<BR>
&gt; if "Win" is in platform() then<BR>
&gt;&nbsp; put tCode into url ("file:" &amp;tLaunchPath)<BR>
&gt;&nbsp; set the hideConsoleWindows to true<BR>
&gt;&nbsp; put empty into tTitle<BR>
&gt;&nbsp; if "NT" is in systemVersion() then ##<BR>
&gt;&nbsp;&nbsp; set the shellCommand to "cmd.exe"<BR>
&gt;&nbsp;&nbsp; put quote &amp;quote into tTitle<BR>
&gt;&nbsp; end if<BR>
&gt;&nbsp; get shell("start" &amp;&amp;tTitle &amp;&amp;quote &amp;tURL &amp;quote)<BR>
&gt; end if<BR>
[endSnip]<BR>
<BR>
In order to catch all of Win95/98/2K/XP/NT/ME, I would only modify the shellCommand test to read...<BR>
<BR>
&nbsp; if ("NT" is in the systemVersion) or ("Windows 4.90" is in the systemVersion) ##<BR>
<BR>
<BR>
Also, if you get the default browser to launch direct without using a temp file, Scott's excellent original post back in May 2002 to the mc list and for which I shall hate him forever ;)...<BR>
<BR>
on launchBrowser theURL<BR>
&nbsp;&nbsp; set the hideConsoleWindows to true<BR>
&nbsp;&nbsp; put empty into theTitle<BR>
&nbsp;&nbsp; if ("NT" is in the systemVersion) or ("Windows 4.90" is in the systemVersion) then<BR>
&nbsp;&nbsp;&nbsp;&nbsp; set the shellCommand to "cmd.exe"<BR>
&nbsp;&nbsp;&nbsp;&nbsp; put quote &amp; quote into theTitle<BR>
&nbsp;&nbsp; end if<BR>
&nbsp;&nbsp; get shell("start" &amp;&amp; theTitle &amp;&amp; theURL)<BR>
end launchBrowser<BR>
<BR>
it may be useful to add a simple error trap in case the URL is already displayed with<BR>
<BR>
if the result is not empty then<BR>
&nbsp; answer "Please click the REFRESH buton in your browser."<BR>
end if<BR>
<BR>
/H</FONT></HTML>