property href

(r/w) string href;

Typ

Zugriff

This property sets and gets the URL to load as the content of the document. The load operation is done asynchronously. When read, this property can contain the URL of the currently loaded document or it may be empty. It will be empty in cases when there is no content or in cases where the content was set manually rather than from an existing URL.
function LoadHomePage()
{
    var homePage = "http://www.aol.com";
    var box = scene.getBoxById("browserWnd");
    if (box)
    {
        box.href = homePage;
    }
}