<HTML><FONT FACE=arial,helvetica><FONT  SIZE=2 FAMILY="SANSSERIF" FACE="Arial" LANG="0">The Original:<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp; &lt;send "file:///" &amp;tPath to program "Finder" with "GURLGURL"&gt;<BR>
<BR>
Ken wrote:<BR>
<BR>
&gt; I tried it without the "file:///" in OS X as well as with other<BR>
&gt; variations with less than three slashes. All did nothing. Perhaps it's<BR>
&gt; the fact they are "/"-delimited paths that they require "file:///" ? <BR>
<BR>
<BR>
As Brian points out, the third / is the first character of the Mac path...<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp; send "file://" &amp; "/Alice/Desktop Folder/myGif.gif" to program "Finder" with "GURLGURL"<BR>
<BR>
should happily attempt to open the file in the default Browser. This is fine, so long as the Browser can display the filePath like images and simple text. But... What's the syntax to open ANY file with it's native application when you don't know the filetype-creator? It must be possible as the Finder does it when you double-click an icon on the desktop. I'm sure that sending the appropriate AppleScript to Finder would do the trick, as in...<BR>
<BR>
&nbsp;&nbsp;&nbsp;&nbsp; put "send open file"&amp;&amp;tURL&amp;&amp; "to Finder" into tScript<BR>
&nbsp;&nbsp;&nbsp;&nbsp; do tScript as AppleScript<BR>
&nbsp;&nbsp;&nbsp;&nbsp; put the result<BR>
<BR>
(okay, this puts "compiler error", but that's because I don't know AppleScript!)<BR>
<BR>
I suspect there will be syntax differences between MacOS and OSX (perhaps "file" vs "location")<BR>
<BR>
Any offerings? Still much needed here! <BR>
<BR>
/H</FONT></HTML>