method dispatchURLToOS

void dispatchURLToOS(string url);

Argumente

Zurückgegebener Wert

An application may request that a URL be "handled" by calling this method. The URL Dispatcher will send the URL directly to the OS. If no scheme is present on the URL, it will be prefixed with "http://". Aside from that, no other validation is done on the URL.
var ctrl = shell.serviceManager.urlDispatcher.controller;
        
ctrl.dispatchURLToOS("http://www.aol.com");