var f as FolderItem = new FolderItem
f.Open( “Google Maps” )
and it just opens a finder on MacOS.
WebFile.Open seems to me to be trying to pull the web into a local web browser within the app. I am wanting to simple tell the users default web browser to open the url I specify.
I was dealing with the same issue 2 days ago. The problem with System.GoToURL() is that it always escapes the URL string whether u want to or not. So I have a URL from Microsoft SharePoint that looks something like this:
If I paste this directly into a browser it works as it should. If I send this to System.GoToURL() it fails because what the browser receives is an escaped version where all the original ‘%’ chars are replaced with their escaped equivalents: %25, and so on, mangling the original URL.
above my pay grade but i’ll take ur word for it! But if u can’t trust the original URL string i imagine that System.GoToURL() would suffer from the same issue?