method loadURL

bool loadURL(string url);

Argumente

Zurückgegebener Wert

This method loads a URL into the DHTML control. The content is loaded asynchronously.
 
function OnInit()
{
    var bx = scene.getBoxById("theContentBox");
    if (bx)
    {
        bx.loadURL("http://www.cnn.com");
    }
}