Monday, November 08, 2010 at 12:03 AM.
system.verbs.builtins.html.dialog.showHtmlDialog
on showHtmlDialog (url) {
if not system.environment.isWindows {
scriptError ("Can't display the dialog because HTML dialogs are not implemented on this platform.")};
local (dllPath = Frontier.pathString + "DLLs\\htmlDialogs.dll");
if not file.exists (dllpath) {
file.writeWholeFile (dllPath, html.dialog.data.htmlDialogsDll)};
local (s);
s = dll.call (dllPath, "showhtmldialog", url);
return (s)}
This listing is for code that runs in the OPML Editor environment. I created these listings because I wanted the search engines to index it, so that when I want to look up something in my codebase I don't have to use the much slower search functionality in my object database. Dave Winer.