method scrollTo

bool scrollTo(int32 x,int32 y);

Argumente

Zurückgegebener Wert

This method sets the scroll position within the loaded document. This has the same effect of calling scrollBy(x,y) if the current scroll position was at (0,0).
var box = scene.getBoxById("htmlBox");
if (box)
{
    box.loadURL("http://www.cnn.com");
    box.scrollTo(25, 100);
}