> on launchInternetApp tAddress
> switch the platform
> case "MacOS"
> send tAddress to program "Finder" with "GURLGURL"
> if the result is not empty then -- if there's an error
> -- report error to user (I've shortened this)
> end if
> break
> case "Win32"
> if tAddress contains "www" then
> put word 1 to -2 of \
>
> queryRegistry("hkey_local_machine\software\classes\http\shell\open\com
> mand\") \
> into tBrowserPath
> launch tAddress with tBrowserPath
> -- open process tBrowserPath && tURL -- this works too
> if the result is not empty then
> answer error "Sorry, unable to open Web browser."
> end if
> else
> if tAddress contains "mailto" then
> put word 1 to -2 of \
>
> queryRegistry("hkey_local_machine\software\classes\mailto\shell\open\c
> ommand\") \
> into tBrowserPath
> launch tAddress with tBrowserPath
> if the result is not empty then
> answer error "Sorry, unable to open e-mail application."
> end if
> end if
> end if
> break
> end switch
> end launchInternetApp
>
> With regard to the lookAndFeel, that property can be set independent
> of the platform MC is running on. "Windows" means every flavor of
> the Windows OS (except perhaps ver. 3.1?). Motif, though I've never
> used it, is one of the GUIs of Unix. Select Tools > Preferences and
> try changing the lookAndFeel to these other settings to see what they
> look like.
>
> I get the digest, so others have probably already said more about
> this, but I hope this is helpful.
>
> Craig
Hi folks,
thats what i saved from some of the last posts.
Hope this helps
Give credits to Craig ;-)
Regards
Klaus Major
Archives: http://www.mail-archive.com/metacard%40lists.best.com/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to <[EMAIL PROTECTED]>, not this list.